From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 878F71393E9 for ; Wed, 14 May 2014 17:32:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1B23E0AB2; Wed, 14 May 2014 17:32:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33809E0A4A for ; Wed, 14 May 2014 17:32:41 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49B5533FFA2 for ; Wed, 14 May 2014 17:32:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id E37D6182D3 for ; Wed, 14 May 2014 17:32:38 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1400088689.da99dbd4942bfbaabffc7d0b0cc4565267ec0358.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:gsoc2014 commit in: layman/overlays/ X-VCS-Repository: proj/layman X-VCS-Files: layman/overlays/tar.py X-VCS-Directories: layman/overlays/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: da99dbd4942bfbaabffc7d0b0cc4565267ec0358 X-VCS-Branch: gsoc2014 Date: Wed, 14 May 2014 17:32:38 +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: 106e1cc5-5719-443b-9c17-236b70941778 X-Archives-Hash: 57f579e07cf24d7228f7577c4e42f1d9 commit: da99dbd4942bfbaabffc7d0b0cc4565267ec0358 Author: Devan Franchini gentoo org> AuthorDate: Wed May 14 01:13:31 2014 +0000 Commit: Devan Franchini gentoo org> CommitDate: Wed May 14 17:31:29 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=da99dbd4 overlays/tar.py: Changes permissions integer to octal. --- layman/overlays/tar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layman/overlays/tar.py b/layman/overlays/tar.py index e57096d..9cb65a2 100644 --- a/layman/overlays/tar.py +++ b/layman/overlays/tar.py @@ -169,7 +169,7 @@ class TarOverlay(OverlaySource): raise Exception('Failed to rename tar subdirectory ' + source + ' to ' + final_path + '\nError was:' + str(error)) - os.chmod(final_path, 0755) + os.chmod(final_path, 0o755) else: raise Exception('Given subpath "' + source + '" does not exist ' ' in the tar package!')