Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dbmanager: fix spatialite connection error message
  • Loading branch information
jef-n committed Jul 16, 2013
1 parent 1233398 commit b9ada4c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ def __init__(self, uri):

self.dbname = uri.database()
if not QFile.exists( self.dbname ):
raise ConnectionError( self.tr('"%s" not found') % self.dbname )
raise ConnectionError( QApplication.translate("DBManagerPlugin", '"{0}" not found').format( self.dbname ) )

try:
self.connection = sqlite.connect( self._connectionInfo() )
Expand Down

0 comments on commit b9ada4c

Please sign in to comment.