Skip to content

Commit

Permalink
Update previous change for Windows.
Browse files Browse the repository at this point in the history
I tried to be too clever and quoted something for the shell that didn't need to be quoted.
  • Loading branch information
mkleehammer committed Feb 19, 2017
1 parent c6d8a4c commit f021468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def _get_version_pkginfo():


def _get_version_git():
n, result = getoutput("git describe --tags --match '[0-9]*'")
n, result = getoutput("git describe --tags --match [0-9]*")
if n:
_print('WARNING: git describe failed with: %s %s' % (n, result))
return None, None
Expand Down

0 comments on commit f021468

Please sign in to comment.