Merge "Fix typo in the pypi-extract-name.py"

This commit is contained in:
Jenkins 2016-08-22 07:22:05 +00:00 committed by Gerrit Code Review
commit 2c8e4bfcd6

View File

@ -28,5 +28,5 @@ if len(sys.argv) == 1 or sys.argv[1] == "--tarball":
elif sys.argv[1] == "--wheel":
print(wheel.bdist_wheel.safer_name(distname))
else:
sys.stderr.write("ERROR: Valid options are --tarball and --wheel")
sys.stderr.write("ERROR: Valid options are --tarball and --wheel\n")
sys.exit(1)