Skip to content

Commit

Permalink
db manager: fixed quoting of table name when schema is empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed May 13, 2014
1 parent 60e1a9b commit 90e4a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def quoteId(self, identifier):
if hasattr(identifier, '__iter__'):
ids = list()
for i in identifier:
if i == None:
if i == None or i == "":
continue
ids.append( self.quoteId(i) )
return u'.'.join( ids )
Expand Down

0 comments on commit 90e4a5f

Please sign in to comment.