diff options
author | Eric Engestrom <[email protected]> | 2017-09-19 13:56:56 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-09-25 12:05:44 +0100 |
commit | e3610475683584a3b3e1e5a3e0435f0678ccd1f7 (patch) | |
tree | 6a79a2c616f2dbcec8285dca4ba31b15be1d62f4 /SConstruct | |
parent | 29c8d755ea6fc97757db9ea28706e516a6b0d7f1 (diff) |
scons: use python3-compatible lists
These changes were generated using python's `2to3` tool.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 0215aa83073..a59a8ea210e 100644 --- a/SConstruct +++ b/SConstruct @@ -152,8 +152,7 @@ try: except ImportError: pass else: - aliases = default_ans.keys() - aliases.sort() + aliases = sorted(default_ans.keys()) env.Help('\n') env.Help('Recognized targets:\n') for alias in aliases: |