summaryrefslogtreecommitdiffstats
path: root/pyLoadCli.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyLoadCli.py')
-rwxr-xr-xpyLoadCli.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pyLoadCli.py b/pyLoadCli.py
index dc22f8d3b..923978bf5 100755
--- a/pyLoadCli.py
+++ b/pyLoadCli.py
@@ -481,25 +481,25 @@ class _GetchMacCarbon:
return chr(msg)
def blue(string):
- return "\033[1;34m" + str(string) + "\033[0m"
+ return "\033[1;34m" + unicode(string) + "\033[0m"
def green(string):
- return "\033[1;32m" + str(string) + "\033[0m"
+ return "\033[1;32m" + unicode(string) + "\033[0m"
def yellow(string):
- return "\033[1;33m" + str(string) + "\033[0m"
+ return "\033[1;33m" + unicode(string) + "\033[0m"
def red(string):
- return "\033[1;31m" + str(string) + "\033[0m"
+ return "\033[1;31m" + unicode(string) + "\033[0m"
def cyan(string):
- return "\033[1;36m" + str(string) + "\033[0m"
+ return "\033[1;36m" + unicode(string) + "\033[0m"
def mag(string):
- return "\033[1;35m" + str(string) + "\033[0m"
+ return "\033[1;35m" + unicode(string) + "\033[0m"
def white(string):
- return "\033[1;37m" + str(string) + "\033[0m"
+ return "\033[1;37m" + unicode(string) + "\033[0m"
def print_help():
print