diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-16 15:30:31 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-16 15:30:31 -0400 |
commit | 8b6d10f3443e8f9b8d662097d496392a4e7ed599 (patch) | |
tree | 8b6985f5274751dfdf8d52b06f64faf129b6bf33 /setuptools/command/upload.py | |
parent | 0f29131df992aff401a8157931e419570826acaa (diff) | |
download | external_python_setuptools-8b6d10f3443e8f9b8d662097d496392a4e7ed599.tar.gz external_python_setuptools-8b6d10f3443e8f9b8d662097d496392a4e7ed599.tar.bz2 external_python_setuptools-8b6d10f3443e8f9b8d662097d496392a4e7ed599.zip |
Fix typo in protocol_version. Thanks aclark!
--HG--
branch : distribute
extra : rebase_source : ab90cfb5cae3189b8d0c71c43992bc0273a7587a
Diffstat (limited to 'setuptools/command/upload.py')
-rwxr-xr-x | setuptools/command/upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/upload.py b/setuptools/command/upload.py index 4bd6021d..9f9366b5 100755 --- a/setuptools/command/upload.py +++ b/setuptools/command/upload.py @@ -92,7 +92,7 @@ class upload(Command): comment = "built on %s" % platform.platform(terse=1) data = { ':action':'file_upload', - 'protcol_version':'1', + 'protocol_version':'1', 'name':self.distribution.get_name(), 'version':self.distribution.get_version(), 'content':(basename,content), |