Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
processing: fix warning
  • Loading branch information
jef-n committed Feb 11, 2017
1 parent 4aa67fc commit fe75e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/tools/vector.py
Expand Up @@ -569,7 +569,7 @@ def ogrLayerName(uri):

if ' table=' in uri:
# table="schema"."table"
re_table_schema = re.compile(' table="([^"]*)"\."([^"]*)"')
re_table_schema = re.compile(' table="([^"]*)"\\."([^"]*)"')
r = re_table_schema.search(uri)
if r:
return r.groups()[0] + '.' + r.groups()[1]
Expand Down

0 comments on commit fe75e1f

Please sign in to comment.