summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xacprep3
1 files changed, 1 insertions, 2 deletions
diff --git a/acprep b/acprep
index af706140..45a53802 100755
--- a/acprep
+++ b/acprep
@@ -470,8 +470,7 @@ class PrepareBuild(CommandLineApp):
self.log.debug('CMake environment =>')
keys = environ.keys()
- keys.sort()
- for key in keys:
+ for key in sorted(keys):
if key in ['PATH', 'CXX'] or key.endswith('FLAGS'):
self.log.debug(' %s=%s' % (key, environ[key]))