Skip to content

Commit

Permalink
Merge branch 'r0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
jmafc committed Oct 24, 2014
2 parents 800158e + 23c2ffe commit df92904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrseas/dbobject/table.py
Expand Up @@ -71,7 +71,7 @@ def split_table(obj, sch):
schema = sch or 'public'
tbl = obj
quoted = '"%s".' % schema
if obj.startswith(schema):
if obj.startswith(schema + '.'):
tbl = obj[len(schema) + 1:]
elif obj.startswith(quoted):
tbl = obj[len(quoted):]
Expand Down

0 comments on commit df92904

Please sign in to comment.