Skip to content
This repository has been archived by the owner on Mar 3, 2018. It is now read-only.

Commit

Permalink
Fix iterator in versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Berger committed Nov 10, 2015
1 parent 84c69dc commit 67442e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysdn/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
# "stabilization", as well as "HEAD" and "master".
tags = set([r for r in refs if re.search(r'\d', r)])
if verbose:
print("discarding '%s', no digits" % ",".join(refs-tags))
print("discarding '%s', no digits" % ",".join(tags))
if verbose:
print("likely tags: %s" % ",".join(sorted(tags)))
for ref in sorted(tags):
Expand Down

0 comments on commit 67442e1

Please sign in to comment.