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 1RGdjb-0002jP-AO for garchives@archives.gentoo.org; Wed, 19 Oct 2011 21:31:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5ACC21C035; Wed, 19 Oct 2011 21:31:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 94E8E21C035 for ; Wed, 19 Oct 2011 21:31:27 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 159741B400F for ; Wed, 19 Oct 2011 21:31:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3179480042 for ; Wed, 19 Oct 2011 21:31:26 +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: Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/pym/build_log.py X-VCS-Directories: gobs/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: a3e1a6b70bc6221be6bba38be7806ae5529b7038 Date: Wed, 19 Oct 2011 21:31:26 +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: X-Archives-Hash: e32008b777cd810eb5aee5c2bfda80d3 commit: a3e1a6b70bc6221be6bba38be7806ae5529b7038 Author: Magnus Granberg gentoo org> AuthorDate: Wed Oct 19 21:31:11 2011 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Wed Oct 19 21:31:11 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= commit;h=3Da3e1a6b7 fix chmod on the logfiles part2 --- gobs/pym/build_log.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gobs/pym/build_log.py b/gobs/pym/build_log.py index ec21af3..354e8d3 100644 --- a/gobs/pym/build_log.py +++ b/gobs/pym/build_log.py @@ -558,8 +558,8 @@ class gobs_buildlog(object): if build_id is not None: for msg_line in msg: self.write_msg_file(msg_line, emerge_info_logfilename) - os.fchmod(settings.get("PORTAGE_LOG_FILE"), 0664) - os.fchmod(emerge_info_logfilename, 0664) + os.chmod(settings.get("PORTAGE_LOG_FILE"), 0664) + os.chmod(emerge_info_logfilename, 0664) print("Package: ", pkg.cpv, "logged to db.") else: try: