Skip to content

Commit fe75e1f

Browse files
committedFeb 11, 2017
processing: fix warning
1 parent 4aa67fc commit fe75e1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/tools/vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def ogrLayerName(uri):
569569

570570
if ' table=' in uri:
571571
# table="schema"."table"
572-
re_table_schema = re.compile(' table="([^"]*)"\."([^"]*)"')
572+
re_table_schema = re.compile(' table="([^"]*)"\\."([^"]*)"')
573573
r = re_table_schema.search(uri)
574574
if r:
575575
return r.groups()[0] + '.' + r.groups()[1]

0 commit comments

Comments
 (0)
Please sign in to comment.