summaryrefslogtreecommitdiffstats
path: root/test/scons-time/help/all-subcommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/scons-time/help/all-subcommands.py')
-rw-r--r--test/scons-time/help/all-subcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scons-time/help/all-subcommands.py b/test/scons-time/help/all-subcommands.py
index 8641d71..43db3ae 100644
--- a/test/scons-time/help/all-subcommands.py
+++ b/test/scons-time/help/all-subcommands.py
@@ -45,7 +45,7 @@ try: eval(c, globals)
except: pass
# Extract all subcommands from the the do_*() functions.
-functions = globals['SConsTimer'].__dict__.keys()
+functions = list(globals['SConsTimer'].__dict__.keys())
do_funcs = [x for x in functions if x[:3] == 'do_']
subcommands = [x[3:] for x in do_funcs]