diff options
Diffstat (limited to 'scripts/contrib/patchreview.py')
-rwxr-xr-x | scripts/contrib/patchreview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/patchreview.py b/scripts/contrib/patchreview.py index 69ef14eb44..d8d7b214e5 100755 --- a/scripts/contrib/patchreview.py +++ b/scripts/contrib/patchreview.py | |||
@@ -51,7 +51,7 @@ def blame_patch(patch): | |||
51 | return subprocess.check_output(("git", "log", | 51 | return subprocess.check_output(("git", "log", |
52 | "--follow", "--find-renames", "--diff-filter=A", | 52 | "--follow", "--find-renames", "--diff-filter=A", |
53 | "--format=%s (%aN <%aE>)", | 53 | "--format=%s (%aN <%aE>)", |
54 | "--", patch)).decode("utf-8").splitlines() | 54 | "--", patch), cwd=os.path.dirname(patch)).decode("utf-8").splitlines() |
55 | 55 | ||
56 | def patchreview(patches): | 56 | def patchreview(patches): |
57 | 57 | ||