We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef862ec commit 1b25439Copy full SHA for 1b25439
git-issues-blog.py
@@ -39,7 +39,7 @@
39
dictionary = json.load(f)
40
lastcommit = dictionary['__commit__']
41
command = "git diff --name-only -z " + lastcommit
42
- changed = subprocess.check_output(command)
+ changed = subprocess.check_output(['git', 'diff', '--name-only', '-z', lastcommit])
43
for x in changed.split(b'\x00'):
44
if x.decode('utf-8'):
45
CHANGED.append(x.decode('utf-8'))
0 commit comments