summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylama/paths.patch
blob: ab6a4719f354ec24fd1d876389649e97e3fc7aed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/pylama/hook.py b/pylama/hook.py
index 029c9dc..9f1a9b9 100644
--- a/pylama/hook.py
+++ b/pylama/hook.py
@@ -26,7 +26,7 @@ def run(command: str) -> Tuple[int, List[bytes], List[bytes]]:
 
 def git_hook(error=True):
     """Run pylama after git commit."""
-    _, files_modified, _ = run("git diff-index --cached --name-only HEAD")
+    _, files_modified, _ = run("@git@ diff-index --cached --name-only HEAD")
 
     options = parse_options()
     setup_logger(options)