diff options
author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2017-03-12 02:46:09 (GMT) |
---|---|---|
committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2017-03-12 02:46:09 (GMT) |
commit | 056622b43309af38e4b6dcbbdcdd0e7b9b176a0d (patch) | |
tree | 462a54045bb7f37948fb4404fed7a33579bc0b07 /bin/scons-proc.py | |
parent | 055c8046afce036fdfad4bc8d60e4059da148f7d (diff) | |
download | SCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.zip SCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.tar.gz SCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.tar.bz2 |
When iterating over dict.items(), we do not need a new list.
Diffstat (limited to 'bin/scons-proc.py')
-rw-r--r-- | bin/scons-proc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/scons-proc.py b/bin/scons-proc.py index 0747b2c..e09c853 100644 --- a/bin/scons-proc.py +++ b/bin/scons-proc.py @@ -104,7 +104,7 @@ Link_Entities_Header = """\ class SCons_XML(object): def __init__(self, entries, **kw): self.values = entries - for k, v in list(kw.items()): + for k, v in kw.items(): setattr(self, k, v) def fopen(self, name): |