Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #659 from slarosa/fix_8065
[DB Manager] Fixes #8065
  • Loading branch information
NathanW2 committed Jun 15, 2013
2 parents 9f3a879 + abcc8b1 commit 6c2689e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/db_manager/db_plugins/spatialite/info_model.py
Expand Up @@ -32,14 +32,14 @@ def __init__(self, db):

def connectionDetails(self):
tbl = [
(self.tr("Filename:"), self.db.connector.dbname)
(QApplication.translate("DBManagerPlugin","Filename:"), self.db.connector.dbname)
]
return HtmlTable( tbl )

def generalInfo(self):
info = self.db.connector.getInfo()
tbl = [
(self.tr("SQLite version"), info[0])
(QApplication.translate("DBManagerPlugin","SQLite version:"), info[0])
]
return HtmlTable( tbl )

Expand Down

0 comments on commit 6c2689e

Please sign in to comment.