summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/wic/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py
index 63955962f6..e5347ec4b7 100644
--- a/scripts/lib/wic/help.py
+++ b/scripts/lib/wic/help.py
@@ -45,7 +45,7 @@ def display_help(subcommand, subcommands):
45 if callable(hlp): 45 if callable(hlp):
46 hlp = hlp() 46 hlp = hlp()
47 pager = subprocess.Popen('less', stdin=subprocess.PIPE) 47 pager = subprocess.Popen('less', stdin=subprocess.PIPE)
48 pager.communicate(hlp) 48 pager.communicate(hlp.encode('utf-8'))
49 49
50 return True 50 return True
51 51