Use common encoding routine everywhere
The string/locale manipulation in Database.py was open-coded and did not use Charset.to_utf8() like the rest of the code.
This commit is contained in:
parent
29e705f337
commit
6dcec48005
|
@ -38,7 +38,6 @@ from decimal import Decimal
|
|||
import string
|
||||
import re
|
||||
import Queue
|
||||
import codecs
|
||||
|
||||
# pyGTK modules
|
||||
|
||||
|
@ -52,7 +51,6 @@ import Charset
|
|||
from Exceptions import *
|
||||
|
||||
log = Configuration.get_logger("logging.conf")
|
||||
encoder = codecs.lookup('utf-8')
|
||||
|
||||
class Database:
|
||||
|
||||
|
@ -1560,7 +1558,7 @@ class Database:
|
|||
|
||||
def insertPlayer(self, name, site_id):
|
||||
result = None
|
||||
(_name, _len) = encoder.encode(unicode(name))
|
||||
_name = Charset.to_utf8(name)
|
||||
c = self.get_cursor()
|
||||
q = "SELECT name, id FROM Players WHERE siteid=%s and name=%s"
|
||||
q = q.replace('%s', self.sql.query['placeholder'])
|
||||
|
|
Loading…
Reference in New Issue
Block a user