From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 167431381F3 for ; Sat, 1 Dec 2012 23:04:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86CE521C01C; Sat, 1 Dec 2012 23:03:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F90821C01C for ; Sat, 1 Dec 2012 23:03:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2232433D982 for ; Sat, 1 Dec 2012 23:03:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id AE200E5436 for ; Sat, 1 Dec 2012 23:03:48 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1354403016.dd3b447230817b9de3fe1f4883ab4444f75cd6fd.zorry@gentoo> Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/package.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: dd3b447230817b9de3fe1f4883ab4444f75cd6fd X-VCS-Branch: master Date: Sat, 1 Dec 2012 23:03:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 68b793f9-960c-410d-8e08-b1eddddc9a2f X-Archives-Hash: 4770735c03090b6043b66a6fc0dfcde4 commit: dd3b447230817b9de3fe1f4883ab4444f75cd6fd Author: Magnus Granberg gentoo org> AuthorDate: Sat Dec 1 23:03:36 2012 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Sat Dec 1 23:03:36 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=dd3b4472 fix a invalid syntax --- gobs/pym/package.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gobs/pym/package.py b/gobs/pym/package.py index 0d7a934..b8747bb 100644 --- a/gobs/pym/package.py +++ b/gobs/pym/package.py @@ -327,7 +327,7 @@ class gobs_package(object): # Fix so we can use add_new_ebuild_sql() to update the ebuilds old_ebuild_list.append(ebuild_version_tree) add_old_ebuild(conn, package_id, old_ebuild_list) - update_active_ebuild_to_fales(conn, package_id, ebuild_version_tree + update_active_ebuild_to_fales(conn, package_id, ebuild_version_tree) # Use packageDictand to update the db # Add new ebuilds to the db ebuild_id_list = add_new_ebuild_sql(conn, package_id, packageDict)