Skip to content

Commit f32fe8b

Browse files
authoredOct 23, 2018
[dbmanager] add string description to query task for better notification (#8259)
1 parent f7cd2cf commit f32fe8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/db_plugins/data_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def modelDone(self):
177177
class SqlResultModelTask(QgsTask):
178178

179179
def __init__(self, db, sql, parent):
180-
super().__init__()
180+
super().__init__(description=QApplication.translate("DBManagerPlugin", "Executing SQL"))
181181
self.db = db
182182
self.sql = sql
183183
self.parent = parent

0 commit comments

Comments
 (0)
Please sign in to comment.