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 242aaea commit 2ae5332Copy full SHA for 2ae5332
src/exceptions.py
@@ -22,7 +22,7 @@ def __str__(self):
22
msg.append(self.message)
23
24
if self.command:
25
- command_s = ' '.join(self.command) if isinstance(self.command, list) else self.command,
+ command_s = ' '.join(self.command) if isinstance(self.command, list) else self.command
26
msg.append(u'Command: {}'.format(command_s))
27
28
if self.exit_code:
0 commit comments