Skip to content

Commit

Permalink
Fix error message in the shell.
Browse files Browse the repository at this point in the history
  • Loading branch information
eerimoq committed Jun 5, 2020
1 parent 648cbfa commit 3997a7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bunga/subparsers/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def shell_main(client):

print_output(output, pipe_commands)
except ExecuteCommandError as e:
print(e.output, end='')
print(e.output.decode('utf-8', 'replace'), end='')
print_error(e.error)


Expand Down
2 changes: 1 addition & 1 deletion bunga/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.26.1'
__version__ = '0.26.2'

0 comments on commit 3997a7c

Please sign in to comment.