From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08EAF139085 for ; Tue, 20 Dec 2016 21:16:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 527BAE0DA7; Tue, 20 Dec 2016 21:16:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C370E0DA7 for ; Tue, 20 Dec 2016 21:16:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C3EF34105A for ; Tue, 20 Dec 2016 21:16:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 757FF492 for ; Tue, 20 Dec 2016 21:16:03 +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: <1482268524.603f968772a11e3406f774967f76bbbcb5ece729.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: pym/tbc/sqlquerys.py X-VCS-Directories: pym/tbc/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 603f968772a11e3406f774967f76bbbcb5ece729 X-VCS-Branch: master Date: Tue, 20 Dec 2016 21:16:03 +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: 9b76033d-e71d-438d-9b5c-ea77c0ad7925 X-Archives-Hash: b4405401d042e0b48d0213cc088be062 commit: 603f968772a11e3406f774967f76bbbcb5ece729 Author: Magnus Granberg gentoo org> AuthorDate: Tue Dec 20 21:15:24 2016 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Dec 20 21:15:24 2016 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=603f9687 fix a typo in add_new_ebuild_sql pym/tbc/sqlquerys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/tbc/sqlquerys.py b/pym/tbc/sqlquerys.py index 901db08..aa9c2a7 100644 --- a/pym/tbc/sqlquerys.py +++ b/pym/tbc/sqlquerys.py @@ -429,7 +429,7 @@ def add_new_ebuild_sql(session, packageDict): except (MultipleResultsFound) as e: # FIXME sys.exit() - session.add(EbuildsMetadata(EbuildId = EbuildInfo.EbuildId, New = v['new'], Updated = v['updated'], = v['git_commit'], Descriptions = v['ebuild_version_descriptions_tree'])) + session.add(EbuildsMetadata(EbuildId = EbuildInfo.EbuildId, New = v['new'], Updated = v['updated'], Commit = v['git_commit'], Descriptions = v['ebuild_version_descriptions_tree'])) session.commit() ebuild_id_list.append(EbuildInfo.EbuildId) restrictions = []