Show
Ignore:
Timestamp:
07/11/06 19:37:27 (18 years ago)
Author:
jerome
Message:

Doesn't output an error anymore when the database encoding can't be changed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/pgstorage.py

    r2960 r2972  
    5757            self.database.query("SET CLIENT_ENCODING TO 'UTF-8';") 
    5858        except PGError, msg :     
    59             self.tool.printInfo("Impossible to set database client encoding to UTF-8 : %s" % msg, "error") 
     59            self.tool.logdebug("Impossible to set database client encoding to UTF-8 : %s" % msg) 
    6060        self.tool.logdebug("Database opened (host=%s, port=%s, dbname=%s, user=%s)" % (host, port, dbname, user)) 
    6161