Commit 6d8ecefd authored by lsenta's avatar lsenta

Fixes #475: correct a typo in metadata environment marker evaluation

parent 2a24c4c7
...@@ -1537,7 +1537,7 @@ class MarkerEvaluation(object): ...@@ -1537,7 +1537,7 @@ class MarkerEvaluation(object):
""" """
return dict( return dict(
(key.replace('.', '_'), value) (key.replace('.', '_'), value)
for key, value in env for key, value in env.items()
) )
@classmethod @classmethod
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment