Skip to content

Commit

Permalink
[dbmanager] add string description to query task for better notificat…
Browse files Browse the repository at this point in the history
…ion (#8259)
  • Loading branch information
nirvn committed Oct 23, 2018
1 parent f7cd2cf commit f32fe8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/data_model.py
Expand Up @@ -177,7 +177,7 @@ def modelDone(self):
class SqlResultModelTask(QgsTask):

def __init__(self, db, sql, parent):
super().__init__()
super().__init__(description=QApplication.translate("DBManagerPlugin", "Executing SQL"))
self.db = db
self.sql = sql
self.parent = parent
Expand Down

0 comments on commit f32fe8b

Please sign in to comment.