Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
db manager: fix BaseError handing (fixes #12645; backport 102f6d3)
  • Loading branch information
jef-n committed May 9, 2015
1 parent 5f4d9d8 commit 54d5287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_model.py
Expand Up @@ -152,7 +152,7 @@ def populate(self):
return False

except BaseError, e:
DlgDbError.showError(unicode(e), None)
DlgDbError.showError(e, None)
return False

database = connection.database()
Expand Down

0 comments on commit 54d5287

Please sign in to comment.