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 4134156 commit 9bcd9b0Copy full SHA for 9bcd9b0
postgres/__init__.py
@@ -248,8 +248,9 @@ def __str__(self):
248
249
class BadRecordType(Exception):
250
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])
+ return "Bad record_type: {}. Available record_types are: tuple, " \
+ "namedtuple, dict, or None (to use the default)." \
253
+ .format(self.args[0])
254
255
256
# The Main Event
0 commit comments