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

Commitd049d60

Browse files
exceptions: fixed typo (#290)
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 parent2a6b392 commitd049d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎testgres/exceptions.py‎

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

3131
ifself.command:
32-
command_s=' '.join(self.command)ifisinstance(self.command,list)elseself.command,
32+
command_s=' '.join(self.command)ifisinstance(self.command,list)elseself.command
3333
msg.append(u'Command: {}'.format(command_s))
3434

3535
ifself.exit_code:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp