mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix a bad indentation bug
This commit is contained in:
parent
7fb93920e4
commit
8bbdff471c
@ -413,15 +413,14 @@ class VLayerConnector(DBConnector):
|
||||
from .sql_dictionary import getSqlDictionary
|
||||
sql_dict = getSqlDictionary()
|
||||
|
||||
if True:
|
||||
items = []
|
||||
for tbl in self.getTables():
|
||||
items.append(tbl[1]) # table name
|
||||
items = []
|
||||
for tbl in self.getTables():
|
||||
items.append(tbl[1]) # table name
|
||||
|
||||
for fld in self.getTableFields((None, tbl[1])):
|
||||
items.append(fld[1]) # field name
|
||||
|
||||
sql_dict["identifier"] = items
|
||||
sql_dict["identifier"] = items
|
||||
return sql_dict
|
||||
|
||||
def getQueryBuilderDictionary(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user