Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Wed, 01 Jul 2015 17:03:24
Message-Id: 1435770339.90ffd325f399934e455af5c836872cf644b49489.blueness@gentoo
1 commit: 90ffd325f399934e455af5c836872cf644b49489
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 17:05:39 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 17:05:39 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=90ffd325
7
8 grs/Populate.py: fix syntax error.
9
10 grs/Populate.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/grs/Populate.py b/grs/Populate.py
14 index f01c424..0271e74 100644
15 --- a/grs/Populate.py
16 +++ b/grs/Populate.py
17 @@ -68,7 +68,7 @@ class Populate():
18
19 def clean_subdirs(self, dirpath):
20 path = os.path.join(self.portage_configroot, dirpath)
21 - if os.path.isdir(path)
22 + if os.path.isdir(path):
23 uid = os.stat(path).st_uid
24 gid = os.stat(path).st_gid
25 mode = os.stat(path).st_mode