Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of github.com:qgis/QGIS into plugman
  • Loading branch information
borysiasty committed Oct 16, 2017
2 parents c33dbd9 + a3f7655 commit ec57d25
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
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 ec57d25

Please sign in to comment.