Author: reinhard
Date: 2005-04-24 16:45:10 -0500 (Sun, 24 Apr 2005)
New Revision: 7483

Modified:
   trunk/gnue-common/src/datasources/drivers/DBSIG2/Connection.py
Log:
Make error message unicode translatable.


Modified: trunk/gnue-common/src/datasources/drivers/DBSIG2/Connection.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/DBSIG2/Connection.py      
2005-04-24 21:41:27 UTC (rev 7482)
+++ trunk/gnue-common/src/datasources/drivers/DBSIG2/Connection.py      
2005-04-24 21:45:10 UTC (rev 7483)
@@ -85,7 +85,8 @@
     try:
       self._driver = __import__ (self._drivername, None, None, '*')
     except ImportError:
-      raise Exceptions.ConnectError, _("The '%s' python module is not 
installed.") % self._drivername
+      raise Exceptions.ConnectError, u_(
+          "The '%s' python module is not installed.") % self._drivername
 
     # Encoding used to communicate with the database (not used by all drivers)
     if parameters.has_key ('encoding'):



_______________________________________________
Commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue

Reply via email to