diff options
author | Stefan Zimmermann <zimmermann.code@gmail.com> | 2014-04-01 07:28:31 (GMT) |
---|---|---|
committer | Stefan Zimmermann <zimmermann.code@gmail.com> | 2014-04-01 07:28:31 (GMT) |
commit | a13f1049893f07d3a77474d77214a24eee3cb75b (patch) | |
tree | 28a869765447c6f052a278ab9da85621eeafc330 /test/site_scons | |
parent | fad7c3eaf7f9cae12dbf03e03df7919d6fedea0e (diff) | |
download | SCons-a13f1049893f07d3a77474d77214a24eee3cb75b.zip SCons-a13f1049893f07d3a77474d77214a24eee3cb75b.tar.gz SCons-a13f1049893f07d3a77474d77214a24eee3cb75b.tar.bz2 |
test: site_scons/site_init: list() globals keys for looping to allow changes.
Diffstat (limited to 'test/site_scons')
-rw-r--r-- | test/site_scons/site_init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/site_scons/site_init.py b/test/site_scons/site_init.py index 9f2e411..45201ac 100644 --- a/test/site_scons/site_init.py +++ b/test/site_scons/site_init.py @@ -51,7 +51,7 @@ import os.path import re special = [] -for x in globals().keys(): +for x in list(globals().keys()): if re.match("__[^_]+__", x): if x in ("__builtins__", "__package__",): # Ignore certain keywords, as they are known to be added by Python |