diff options
| author | William Deegan <bill@baddogconsulting.com> | 2016-10-17 21:44:02 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2016-10-17 21:44:02 (GMT) |
| commit | a24325a32803873ac1fc8a42b0122e74a69e36e4 (patch) | |
| tree | 517dc6b30cc2d5b189dd383e152029893e27cfec /src/engine/SCons/Script/Interactive.py | |
| parent | 6a1b06d97163ad7ec280c2a028fac33258677123 (diff) | |
| parent | 5587089a661a520a32c353ea886939cd63a0636a (diff) | |
| download | SCons-a24325a32803873ac1fc8a42b0122e74a69e36e4.zip SCons-a24325a32803873ac1fc8a42b0122e74a69e36e4.tar.gz SCons-a24325a32803873ac1fc8a42b0122e74a69e36e4.tar.bz2 | |
Merged scons/scons into default
Diffstat (limited to 'src/engine/SCons/Script/Interactive.py')
| -rw-r--r-- | src/engine/SCons/Script/Interactive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Script/Interactive.py b/src/engine/SCons/Script/Interactive.py index e7a0658..3c3d23a 100644 --- a/src/engine/SCons/Script/Interactive.py +++ b/src/engine/SCons/Script/Interactive.py @@ -121,7 +121,7 @@ class SConsInteractiveCmd(cmd.Cmd): def __init__(self, **kw): cmd.Cmd.__init__(self) - for key, val in kw.items(): + for key, val in list(kw.items()): setattr(self, key, val) if sys.platform == 'win32': @@ -250,7 +250,7 @@ class SConsInteractiveCmd(cmd.Cmd): while n: n = walker.get_next() - for node in seen_nodes.keys(): + for node in list(seen_nodes.keys()): # Call node.clear() to clear most of the state node.clear() # node.clear() doesn't reset node.state, so call |
