Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix exception when selecting string function
just a typo causing an exception when selecting a string function in query builder dialog
  • Loading branch information
aroche authored and m-kuhn committed Nov 15, 2016
1 parent a373f95 commit 6bfd0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/dlg_query_builder.py
Expand Up @@ -163,7 +163,7 @@ def add_functions(self):
self.ui.functions.setCurrentIndex(0)

def add_stringfct(self):
if self.ui.stringFct.currentIndex() <= 0:
if self.ui.stringfct.currentIndex() <= 0:
return
ag = self.ui.stringfct.currentText()

Expand Down

0 comments on commit 6bfd0fd

Please sign in to comment.