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

(-)a/ucs-4.0-2/management/univention-management-console/src/univention/management/console/protocol/message.py (+2 lines)
 Lines 129-134   def _formattedMessage(_id, _type, mimetype, command, body, arguments): Link Here 
129
		if mimetype == MIMETYPE_JSON:
129
		if mimetype == MIMETYPE_JSON:
130
			data = json.dumps(body)
130
			data = json.dumps(body)
131
		else:
131
		else:
132
			if isinstance(body, unicode):
133
				body = body.encode('UTF-8')
132
			data = body
134
			data = body
133
		args = ''
135
		args = ''
134
		if arguments:
136
		if arguments:

Return to bug 38765