X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b4fec57b6d53f8e8a45c46ff11f13cbcbea1006a..cf98cff2a166eb35ed2c946e03f1610069bdd1d4:/nominatim/db/utils.py diff --git a/nominatim/db/utils.py b/nominatim/db/utils.py index 4d4305e7..9a4a41a5 100644 --- a/nominatim/db/utils.py +++ b/nominatim/db/utils.py @@ -61,9 +61,9 @@ def execute_file(dsn, fname, ignore_errors=False, pre_code=None, post_code=None) # List of characters that need to be quoted for the copy command. -_SQL_TRANSLATION = {ord(u'\\') : u'\\\\', - ord(u'\t') : u'\\t', - ord(u'\n') : u'\\n'} +_SQL_TRANSLATION = {ord(u'\\'): u'\\\\', + ord(u'\t'): u'\\t', + ord(u'\n'): u'\\n'} class CopyBuffer: """ Data collector for the copy_from command.