summaryrefslogtreecommitdiff
path: root/portato/db/__init__.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 04:39:03 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 04:39:03 +0200
commit1e59217d2b2266b4870a51667ad71b011aa4204f (patch)
tree2436ce185865cde7b38523b1307c22f0a36ced96 /portato/db/__init__.py
parent2372bc439ef5b8d87b16d0870e602627946813ad (diff)
downloadportato-1e59217d2b2266b4870a51667ad71b011aa4204f.tar.gz
portato-1e59217d2b2266b4870a51667ad71b011aa4204f.tar.bz2
portato-1e59217d2b2266b4870a51667ad71b011aa4204f.zip
Unified strings
Diffstat (limited to 'portato/db/__init__.py')
-rw-r--r--portato/db/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/db/__init__.py b/portato/db/__init__.py
index a58ba61..60cb1c9 100644
--- a/portato/db/__init__.py
+++ b/portato/db/__init__.py
@@ -38,7 +38,7 @@ def Database(type):
try:
from .sql import SQLDatabase
except ImportError:
- warning(_("Cannot load SQLDatabase."))
+ warning(_("Cannot load %s."), "SQLDatabase")
return Database("dict")
else:
return SQLDatabase(SectionDict(_SESSION, type))
@@ -53,7 +53,7 @@ def Database(type):
try:
from .eix_sql import EixSQLDatabase
except ImportError:
- warning(_("Cannot load EixSQLDatabase."))
+ warning(_("Cannot load %s."), "EixSQLDatabase.")
return Database("sql")
else:
return EixSQLDatabase(SectionDict(_SESSION, type))