Skip to content

Commit f19b89e

Browse files
committed
Fix unknown option errors with calc_release_version.py
1 parent 5bc41ac commit f19b89e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/calc_release_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def iter_tag_lines():
250250
the second is a tag that is associated with that commit. Duplicate commits
251251
are possible.
252252
"""
253-
output = check_output(['git', 'tag', '--list', '--format=%(*objectname)|%(objectname)|%(refname:strip=2)'])
253+
output = check_output(['git', 'tag', '--list', '--format="%(*objectname)|%(objectname)|%(refname:strip=2)"'])
254254
lines = output.splitlines()
255255
for l in lines:
256256
obj, tagobj, tag = l.split('|', 2)

0 commit comments

Comments
 (0)