From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RJwg2-00088h-Vb for garchives@archives.gentoo.org; Sat, 29 Oct 2011 00:21:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0ADEB21C01F; Sat, 29 Oct 2011 00:21:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CD5CC21C01F for ; Sat, 29 Oct 2011 00:21:27 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 243F01B4014 for ; Sat, 29 Oct 2011 00:21:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8E7CC80042 for ; Sat, 29 Oct 2011 00:21:26 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/pgsql.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: a0a7555220ac98a99b146df1053c10729f20fe68 Date: Sat, 29 Oct 2011 00:21:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: c1a8fffd42130631f49d91220c44a1a2 commit: a0a7555220ac98a99b146df1053c10729f20fe68 Author: Magnus Granberg gentoo org> AuthorDate: Sat Oct 29 00:21:15 2011 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Sat Oct 29 00:21:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= commit;h=3Da0a75552 fix a type error in pgsql.py part2 --- gobs/pym/pgsql.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gobs/pym/pgsql.py b/gobs/pym/pgsql.py index 53d2ebc..606c624 100644 --- a/gobs/pym/pgsql.py +++ b/gobs/pym/pgsql.py @@ -322,7 +322,7 @@ def have_package_buildqueue(connection, ebuild_id, co= nfig_id): entries =3D cursor.fetchone() return entries =20 -def get_queue_id_list_config(connection, config_id) +def get_queue_id_list_config(connection, config_id): cursor =3D connection.cursor() sqlQ =3D 'SELECT queue_id FROM buildqueue WHERE config_id =3D %s' cursor.execute(sqlQ, (config_id,))