Skip to content

Commit

Permalink
Fixing KeyError in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-bunn committed Oct 24, 2017
1 parent d67f452 commit 2fd5851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@ def run(self):
pass

self.status('building distribution')
os.system(('{sys.executable} setup.py sdist').format(**locals()))
os.system(('{exe} setup.py sdist').format(exe=sys.executable))

self.status('uploading distribution')
os.system('twine upload dist/*')
Expand Down

0 comments on commit 2fd5851

Please sign in to comment.