Skip to content

Commit

Permalink
Fix a syntax error in dlg_sql_layer_window.py
Browse files Browse the repository at this point in the history
  • Loading branch information
daniviga authored and m-kuhn committed Oct 16, 2017
1 parent 83212e7 commit a3f7655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/dlg_sql_layer_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def __init__(self, iface, layer, parent=None):
schema = uri.schema()
if schema and schema.upper() != 'PUBLIC':
sql = 'SELECT * FROM ' + schema + '.' + sql
else
else:
sql = 'SELECT * FROM ' + sql
self.editSql.setText(sql)
self.executeSql()
Expand Down

0 comments on commit a3f7655

Please sign in to comment.