]> git.decadent.org.uk Git - dak.git/commitdiff
stop setting the db connection to latin1
authorMike O'Connor <stew@vireo.org>
Mon, 23 Feb 2009 21:28:38 +0000 (16:28 -0500)
committerMike O'Connor <stew@vireo.org>
Mon, 23 Feb 2009 21:28:38 +0000 (16:28 -0500)
Signed-off-by: Mike O'Connor <stew@vireo.org>
dak/contents.py

index eb9e5c38ca429d6b79db655592f0b8ff6f3e2eaa..963bf494842904663c354c9d234bdcd58f4ca941 100644 (file)
@@ -88,9 +88,6 @@ log = logging.getLogger()
 
 ################################################################################
 
-# we unfortunately still have broken stuff in headers
-latin1_q = """SET CLIENT_ENCODING TO 'LATIN1'"""
-
 # get all the arches delivered for a given suite
 # this should probably exist somehere common
 arches_q = """PREPARE arches_q as
@@ -252,7 +249,6 @@ class Contents(object):
         pooldir = Config()[ 'Dir::Pool' ]
 
         cursor = DBConn().cursor();
-        cursor.execute( latin1_q )
         cursor.execute( debs_q )
         cursor.execute( olddeb_q )
         cursor.execute( arches_q )