View | Details | Raw Unified | Return to bug 17044
Collapse All | Expand All

(-)a/src/common/logger.py (+1 lines)
Lines 755-760 class Logger: Link Here
755
		# if there's a need to do more gzip, put that to a function
755
		# if there's a need to do more gzip, put that to a function
756
		string = StringIO()
756
		string = StringIO()
757
		gzip = GzipFile(fileobj=string, mode='w')
757
		gzip = GzipFile(fileobj=string, mode='w')
758
		data = str(data) # the gzip module can't handle unicode objects
758
		gzip.write(data)
759
		gzip.write(data)
759
		gzip.close()
760
		gzip.close()
760
		data = string.getvalue()
761
		data = string.getvalue()

Return to bug 17044