diff options
Diffstat (limited to 'pomu/patch/patch.py')
-rw-r--r-- | pomu/patch/patch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/patch/patch.py b/pomu/patch/patch.py index 40a97c6..ddc205b 100644 --- a/pomu/patch/patch.py +++ b/pomu/patch/patch.py @@ -25,7 +25,7 @@ def process_changes(_repo, single): pkpref = '/'.join(path.dirname(f).split('/')[0:2]) if pkpref in res: paths[pkpref].append(f) - res[pkpref].append(new_file_patch(f)) + res[pkpref].append(new_file_patch(_repo, f)) for diff in chans: # changes in tracked files pkpref = '/'.join(path.dirname(diff.a_path).split('/')[0:2]) if pkpref in res: |