Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
db manager: fix BaseError handing (fixes #12645)
  • Loading branch information
jef-n committed Apr 26, 2015
1 parent c79dd9d commit 102f6d3
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 @@ -155,7 +155,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 102f6d3

Please sign in to comment.