Skip to content

Commit 9bcd9b0

Browse files
committed
Reflow error text
1 parent 4134156 commit 9bcd9b0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

postgres/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,9 @@ def __str__(self):
248248

249249
class BadRecordType(Exception):
250250
def __str__(self):
251-
return "Bad record_type: {}. Available record_types are: tuple, namedtuple, " \
252-
"dict, or None to use the default.".format(self.args[0])
251+
return "Bad record_type: {}. Available record_types are: tuple, " \
252+
"namedtuple, dict, or None (to use the default)." \
253+
.format(self.args[0])
253254

254255

255256
# The Main Event

0 commit comments

Comments
 (0)