diff options
author | Mykyta Holubakha <hilobakho@gmail.com> | 2017-06-07 04:44:55 +0300 |
---|---|---|
committer | Mykyta Holubakha <hilobakho@gmail.com> | 2017-06-07 04:44:55 +0300 |
commit | a2d46564fc78a6759624aeea595eed8a89776b0c (patch) | |
tree | b70f1a9d0f5c5ccbe7e4bed902dcff52a60bdeab /pomu/package.py | |
parent | Process on package impl (diff) | |
download | pomu-a2d46564fc78a6759624aeea595eed8a89776b0c.tar.gz pomu-a2d46564fc78a6759624aeea595eed8a89776b0c.tar.bz2 pomu-a2d46564fc78a6759624aeea595eed8a89776b0c.zip |
Fix multiple issues with packages and repositories
Diffstat (limited to 'pomu/package.py')
-rw-r--r-- | pomu/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/package.py b/pomu/package.py index f3319f1..65c6d18 100644 --- a/pomu/package.py +++ b/pomu/package.py @@ -42,7 +42,7 @@ class Package(): return d_path def read_path(self, d_path): - for wd, dirs, files in d_path: + for wd, dirs, files in os.walk(d_path): wd = self.strip_root(wd) self.files.extend([(wd, f) for f in files]) |