Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -9530,6 +9530,8 @@ def log_error(msg=None):
if msg is None:
print >> sys.stderr
else:
if type(msg) is unicode:
msg = msg.encode('utf-8')
print >> sys.stderr, colorize(str(msg), stream=sys.stderr)

def expand_project_in_class_path_arg(cpArg):
Expand Down