From: Mike O'Connor Date: Mon, 23 Feb 2009 21:28:38 +0000 (-0500) Subject: stop setting the db connection to latin1 X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=7bd3a212dc79eadd396f101e43983450f1dca53a;p=dak.git stop setting the db connection to latin1 Signed-off-by: Mike O'Connor --- diff --git a/dak/contents.py b/dak/contents.py index eb9e5c38..963bf494 100644 --- a/dak/contents.py +++ b/dak/contents.py @@ -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 )