summaryrefslogtreecommitdiff
path: root/test/AS
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-09-20 15:05:06 -0400
committerWilliam Blevins <wblevins001@gmail.com>2016-09-20 15:05:06 -0400
commit226c34a47471c5c27bc9a0c262edd62d713acc81 (patch)
treea17ce5fe708b05dd585522c5d822a286ac8129d0 /test/AS
parent2e74f8c28a15f64bad8429ebece227db285f07dc (diff)
downloadscons-git-226c34a47471c5c27bc9a0c262edd62d713acc81.tar.gz
Futurize stage 2 2to3 fixes only.
Diffstat (limited to 'test/AS')
-rw-r--r--test/AS/nasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/AS/nasm.py b/test/AS/nasm.py
index be7db3ef4..551a5ab55 100644
--- a/test/AS/nasm.py
+++ b/test/AS/nasm.py
@@ -69,7 +69,7 @@ else:
# anyway...).
nasm_format = 'elf'
format_map = {}
-for k, v in format_map.items():
+for k, v in list(format_map.items()):
if sys.platform.find(k) != -1:
nasm_format = v
break