From 3ea245437c2094a5eae415732c7b349606fd111f Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 20 Apr 2016 10:16:37 -0400 Subject: Correction for expected dict order when PYTHONHASHSEED=0 --- setuptools/command/egg_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/egg_info.py') 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): -- cgit v1.2.3