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 1Sjt1M-00083d-BI for garchives@archives.gentoo.org; Wed, 27 Jun 2012 14:15:04 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30ECEE0684; Wed, 27 Jun 2012 14:14:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ECED5E0684 for ; Wed, 27 Jun 2012 14:14:45 +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 584E51B46B3 for ; Wed, 27 Jun 2012 14:14:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 228D0E5432 for ; Wed, 27 Jun 2012 14:14:44 +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: <1340806464.595b7763ca7adbb6fb583664fb158c056826956c.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: 595b7763ca7adbb6fb583664fb158c056826956c X-VCS-Branch: master Date: Wed, 27 Jun 2012 14:14:44 +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: 01f9bf6e-bd76-4a76-8d60-99ec081ce5c0 X-Archives-Hash: 5ee3bb01cad4ba8617664809b04a0a4d commit: 595b7763ca7adbb6fb583664fb158c056826956c Author: Magnus Granberg gentoo org> AuthorDate: Wed Jun 27 14:14:24 2012 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Wed Jun 27 14:14:24 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= commit;h=3D595b7763 fix for logging --- gobs/pym/package.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gobs/pym/package.py b/gobs/pym/package.py index 8147c5b..2fa2039 100644 --- a/gobs/pym/package.py +++ b/gobs/pym/package.py @@ -184,9 +184,9 @@ class gobs_package(object): # add new categories package ebuild to tables package and ebuilds # C =3D Checking # N =3D New Package - log_msg =3D ("C %s/%s" % (categories, package,) + log_msg =3D "C %s/%s" % (categories, package,) add_gobs_logs(conn, log_msg, "info", config_profile) - log_msg =3D ("N %s/%s" % (categories, package,) + log_msg =3D "N %s/%s" % (categories, package,) add_gobs_logs(conn, log_msg, "info", config_profile) pkgdir =3D self._mysettings['PORTDIR'] + "/" + categories + "/" + pack= age # Get PORTDIR + cp categories_dir =3D self._mysettings['PORTDIR'] + "/" + categories + "/= " @@ -216,7 +216,7 @@ class gobs_package(object): manifest_error =3D init_manifest.digestcheck() if manifest_error is not None: qa_error.append(manifest_error) - log_msg =3D ("QA: %s/%s %s" % (categories, package, qa_error,) + log_msg =3D "QA: %s/%s %s" % (categories, package, qa_error,) add_gobs_logs(conn, log_msg, "info", config_profile) add_qa_repoman(conn,ebuild_id_list, qa_error, packageDict, config_id) # Add the ebuild to the buildqueru table if needed