summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r--scripts/lib/bsp/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/help.py b/scripts/lib/bsp/help.py
index 85a09dd29b..311c5e4189 100644
--- a/scripts/lib/bsp/help.py
+++ b/scripts/lib/bsp/help.py
@@ -42,7 +42,7 @@ def display_help(subcommand, subcommands):
42 42
43 help = subcommands.get(subcommand, subcommand_error)[2] 43 help = subcommands.get(subcommand, subcommand_error)[2]
44 pager = subprocess.Popen('less', stdin=subprocess.PIPE) 44 pager = subprocess.Popen('less', stdin=subprocess.PIPE)
45 pager.communicate(help) 45 pager.communicate(bytes(help, 'UTF-8'))
46 46
47 return True 47 return True
48 48