From 7bd3a212dc79eadd396f101e43983450f1dca53a Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Mon, 23 Feb 2009 16:28:38 -0500 Subject: [PATCH] stop setting the db connection to latin1 Signed-off-by: Mike O'Connor --- dak/contents.py | 4 ---- 1 file changed, 4 deletions(-) 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 ) -- 2.39.5