Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/
Date: Sat, 29 Oct 2011 00:21:35
Message-Id: a0a7555220ac98a99b146df1053c10729f20fe68.zorry@gentoo
1 commit: a0a7555220ac98a99b146df1053c10729f20fe68
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 29 00:21:15 2011 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 29 00:21:15 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=a0a75552
7
8 fix a type error in pgsql.py part2
9
10 ---
11 gobs/pym/pgsql.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/gobs/pym/pgsql.py b/gobs/pym/pgsql.py
15 index 53d2ebc..606c624 100644
16 --- a/gobs/pym/pgsql.py
17 +++ b/gobs/pym/pgsql.py
18 @@ -322,7 +322,7 @@ def have_package_buildqueue(connection, ebuild_id, config_id):
19 entries = cursor.fetchone()
20 return entries
21
22 -def get_queue_id_list_config(connection, config_id)
23 +def get_queue_id_list_config(connection, config_id):
24 cursor = connection.cursor()
25 sqlQ = 'SELECT queue_id FROM buildqueue WHERE config_id = %s'
26 cursor.execute(sqlQ, (config_id,))