Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2ae5332

Browse files
author
d.kovalenko
committed
exceptions: fixed typo (#290) [thanks to Maksim Korotkov]
It is implied that command_s should be a string, but now it is a tuple due to a typo.Signed-off-by: Maksim Korotkov <m.korotkov@postgrespro.ru>
1 parent242aaea commit2ae5332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/exceptions.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __str__(self):
2222
msg.append(self.message)
2323

2424
ifself.command:
25-
command_s=' '.join(self.command)ifisinstance(self.command,list)elseself.command,
25+
command_s=' '.join(self.command)ifisinstance(self.command,list)elseself.command
2626
msg.append(u'Command: {}'.format(command_s))
2727

2828
ifself.exit_code:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp