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 31700138CD0 for ; Wed, 1 Jul 2015 17:03:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C937CE0827; Wed, 1 Jul 2015 17:03:23 +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 80380E0827 for ; Wed, 1 Jul 2015 17:03:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D484634080E for ; Wed, 1 Jul 2015 17:03:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 942FA739 for ; Wed, 1 Jul 2015 17:03:21 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1435770339.90ffd325f399934e455af5c836872cf644b49489.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Populate.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 90ffd325f399934e455af5c836872cf644b49489 X-VCS-Branch: master Date: Wed, 1 Jul 2015 17:03:21 +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: 778f6390-66d3-42ff-a215-6435274dab3b X-Archives-Hash: 4580a28154079bb12a5da80c38e9c9cf commit: 90ffd325f399934e455af5c836872cf644b49489 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jul 1 17:05:39 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jul 1 17:05:39 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=90ffd325 grs/Populate.py: fix syntax error. grs/Populate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Populate.py b/grs/Populate.py index f01c424..0271e74 100644 --- a/grs/Populate.py +++ b/grs/Populate.py @@ -68,7 +68,7 @@ class Populate(): def clean_subdirs(self, dirpath): path = os.path.join(self.portage_configroot, dirpath) - if os.path.isdir(path) + if os.path.isdir(path): uid = os.stat(path).st_uid gid = os.stat(path).st_gid mode = os.stat(path).st_mode