Skip to content

Commit 54d5287

Browse files
committed
db manager: fix BaseError handing (fixes #12645; backport 102f6d3)
1 parent 5f4d9d8 commit 54d5287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/db_manager/db_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def populate(self):
152152
return False
153153

154154
except BaseError, e:
155-
DlgDbError.showError(unicode(e), None)
155+
DlgDbError.showError(e, None)
156156
return False
157157

158158
database = connection.database()

0 commit comments

Comments
 (0)