Skip to content

Commit 6bfd0fd

Browse files
arochem-kuhn
authored andcommitted
fix exception when selecting string function
just a typo causing an exception when selecting a string function in query builder dialog
1 parent a373f95 commit 6bfd0fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/db_manager/dlg_query_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def add_functions(self):
163163
self.ui.functions.setCurrentIndex(0)
164164

165165
def add_stringfct(self):
166-
if self.ui.stringFct.currentIndex() <= 0:
166+
if self.ui.stringfct.currentIndex() <= 0:
167167
return
168168
ag = self.ui.stringfct.currentText()
169169

0 commit comments

Comments
 (0)