We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade8bdf commit 20b1255Copy full SHA for 20b1255
1 file changed
bessctl/bessctl
@@ -142,14 +142,13 @@ def main():
142
line_buf = []
143
144
for arg in sys.argv[1:]:
145
- arg = arg.decode()
146
if arg == '--':
147
cmds.append(' '.join(line_buf))
148
149
else:
150
line_buf.append(arg)
151
152
- cmds.append(' '.join(line_buf))
+ cmds.append(u' '.join(line_buf))
153
run_cli(io.StringIO('\n'.join(cmds)))
154
155
if __name__ == '__main__':
0 commit comments