diff options
author | 2015-07-01 13:05:39 -0400 | |
---|---|---|
committer | 2015-07-01 13:05:39 -0400 | |
commit | 90ffd325f399934e455af5c836872cf644b49489 (patch) | |
tree | 468c38ed8c18b06f8192fbc04c36a9065cf5713d /grs/Populate.py | |
parent | grs/WorldConf.py: clean up variable name. (diff) | |
download | grss-90ffd325f399934e455af5c836872cf644b49489.tar.gz grss-90ffd325f399934e455af5c836872cf644b49489.tar.bz2 grss-90ffd325f399934e455af5c836872cf644b49489.zip |
grs/Populate.py: fix syntax error.
Diffstat (limited to 'grs/Populate.py')
-rw-r--r-- | grs/Populate.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |