Browse Source

fix typo s with e

oz123 12 years ago
parent
commit
45b011d4ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pwman/data/drivers/sqlite.py

+ 1 - 1
pwman/data/drivers/sqlite.py

@@ -56,7 +56,7 @@ class SQLiteDatabase(Database):
             self._cur = self._con.cursor()
             self._checktables()
         except sqlite.DatabaseError, e:
-            raise DatabaseException("SQLite: %s" % (s))
+            raise DatabaseException("SQLite: %s" % (e))
 
     def close(self):
         self._cur.close()