summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykyta Holubakha <hilobakho@gmail.com>2017-06-07 04:44:55 +0300
committerMykyta Holubakha <hilobakho@gmail.com>2017-06-07 04:44:55 +0300
commita2d46564fc78a6759624aeea595eed8a89776b0c (patch)
treeb70f1a9d0f5c5ccbe7e4bed902dcff52a60bdeab /pomu/package.py
parentProcess on package impl (diff)
downloadpomu-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.py2
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])