aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-04-20 10:16:37 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-04-20 10:16:37 -0400
commit3ea245437c2094a5eae415732c7b349606fd111f (patch)
tree828c089a8cfda9d92a416b4f132297704707dc0d /setuptools/command
parent7ec2dd5ec7eb6ff7c2bc7f4aedd21a73c5d399a3 (diff)
downloadexternal_python_setuptools-3ea245437c2094a5eae415732c7b349606fd111f.tar.gz
external_python_setuptools-3ea245437c2094a5eae415732c7b349606fd111f.tar.bz2
external_python_setuptools-3ea245437c2094a5eae415732c7b349606fd111f.zip
Correction for expected dict order when PYTHONHASHSEED=0
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index 3c033300..8e1502a5 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -77,9 +77,9 @@ class egg_info(Command):
egg_info = odict()
# follow the order these keys would have been added
# when PYTHONHASHSEED=0
+ egg_info['tag_build'] = self.tags()
egg_info['tag_date'] = 0
egg_info['tag_svn_revision'] = 0
- egg_info['tag_build'] = self.tags()
edit_config(filename, dict(egg_info=egg_info))
def finalize_options(self):