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 f52ad10 commit 1f05c65Copy full SHA for 1f05c65
roundup/backends/back_postgresql.py
@@ -103,7 +103,7 @@ def get_database_name(config):
103
#
104
# with suitable quoting but ... really.
105
search = re.search(
106
- 'FATAL:\s+database\s+"([^"\s]*)"\s+does\s+not\s+exist',
+ r'FATAL:\s+database\s+"([^"\s]*)"\s+does\s+not\s+exist',
107
message.args[0])
108
if search:
109
dbname = search.groups()[0]
0 commit comments