Skip to content

Commit 9c85798

Browse files
committed
correct syntax issue (NO_JIRA)
1 parent 44e5f08 commit 9c85798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/githooks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_text_file_content(filename):
133133
if _is_github_event() or 'pytest' in sys.modules:
134134
data = Path(filename).read_text()
135135
else:
136-
data = _get_output('git', 'show', f':{filename}')
136+
data = _get_output(['git', 'show', f':{filename}'])
137137
return data
138138

139139

0 commit comments

Comments
 (0)