Skip to content

Commit 8bbdff4

Browse files
author
Hugo Mercier
committedJan 7, 2016
Fix a bad indentation bug
1 parent 7fb9392 commit 8bbdff4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎python/plugins/db_manager/db_plugins/vlayers/connector.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -413,15 +413,14 @@ def getSqlDictionary(self):
413413
from .sql_dictionary import getSqlDictionary
414414
sql_dict = getSqlDictionary()
415415

416-
if True:
417-
items = []
418-
for tbl in self.getTables():
419-
items.append(tbl[1]) # table name
416+
items = []
417+
for tbl in self.getTables():
418+
items.append(tbl[1]) # table name
420419

421420
for fld in self.getTableFields((None, tbl[1])):
422421
items.append(fld[1]) # field name
423422

424-
sql_dict["identifier"] = items
423+
sql_dict["identifier"] = items
425424
return sql_dict
426425

427426
def getQueryBuilderDictionary(self):

0 commit comments

Comments
 (0)
Please sign in to comment.