Skip to content

Commit

Permalink
Merge pull request #24 from joshua-hester/master
Browse files Browse the repository at this point in the history
added required positional argument for wheel.425tags.get_platform()
  • Loading branch information
hobu authored Jan 30, 2020
2 parents 759b3ab + 5c974dc commit 52a3619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mgrs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_windows_platform_name():
import wheel.pep425tags
name = wheel.pep425tags.get_abbr_impl() + \
wheel.pep425tags.get_impl_ver() + \
'-' + wheel.pep425tags.get_platform()
'-' + wheel.pep425tags.get_platform(None)
return libname + '.' + name + '.pyd'
except ImportError:
return libname + '.pyd'
Expand Down

0 comments on commit 52a3619

Please sign in to comment.