[issue27349] distutils.command.upload: typo "protcol_version"

2016-06-18 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.5, Python 3.6 ___ Python tracker

[issue27349] distutils.command.upload: typo "protcol_version"

2016-06-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 81a9ce02b49b by Berker Peksag in branch '3.5': Issue #27349: Fix typo in distutils upload command https://hg.python.org/cpython/rev/81a9ce02b49b New changeset a4d00ae53e35 by Berker Peksag in branch 'default': Issue #27349: Merge from 3.5 https://hg

[issue27349] distutils.command.upload: typo "protcol_version"

2016-06-18 Thread Jakub Wilk
New submission from Jakub Wilk: distutils/command/upload.py reads: data = { # action ':action': 'file_upload', 'protcol_version': '1', ... } It should be of course 'protocol_version'. I checked the PyPI code, and it's spelled corre