diff options
| author | lsenta <laurent.senta@gmail.com> | 2015-12-16 12:15:53 +0100 |
|---|---|---|
| committer | lsenta <laurent.senta@gmail.com> | 2015-12-16 12:15:53 +0100 |
| commit | 6d8ecefd8e915a8ec4e73649b3e352b7d48931f2 (patch) | |
| tree | 73e515ffa99af99dccd9068b1260d106a700a45a | |
| parent | 2a24c4c7f67090f4ea73d42a2442b5eaf55d4f39 (diff) | |
| download | python-setuptools-git-6d8ecefd8e915a8ec4e73649b3e352b7d48931f2.tar.gz | |
Fixes #475: correct a typo in metadata environment marker evaluation
| -rw-r--r-- | pkg_resources/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index f65fef3e..b55e4127 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -1537,7 +1537,7 @@ class MarkerEvaluation(object): """ return dict( (key.replace('.', '_'), value) - for key, value in env + for key, value in env.items() ) @classmethod |
