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: Tue, 30 Aug 2011 23:41:38
Message-Id: 972fe00dfbc63e23c5508c4503be33220a3a9769.zorry@gentoo
1 commit: 972fe00dfbc63e23c5508c4503be33220a3a9769
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 23:41:14 2011 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 23:41:14 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=972fe00d
7
8 Fix uplicate key value violates unique constraint in arch.py
9
10 ---
11 gobs/pym/arch.py | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/gobs/pym/arch.py b/gobs/pym/arch.py
15 index 1a26083..ebd0017 100644
16 --- a/gobs/pym/arch.py
17 +++ b/gobs/pym/arch.py
18 @@ -20,6 +20,6 @@ class gobs_arch(object):
19 for arch in arch_list:
20 if arch[0] not in ["~","-"]:
21 arch_list.append("-" + arch)
22 - arch_list.append("-*")
23 - add_new_arch_db(conn,arch_list)
24 + arch_list.append("-*")
25 + add_new_arch_db(conn,arch_list)
26 CM.putConnection(conn)
27 \ No newline at end of file