summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatt Belhorn <belhornmp@ornl.gov>2016-08-01 17:27:33 -0400
committerMatt Belhorn <belhornmp@ornl.gov>2016-08-01 17:27:33 -0400
commit661708b7facbcc4c4fab7b7592e605e1d63de7b4 (patch)
treeeade9008c9570ea1ad545469367821d3770d22d2 /lib
parentae167c09fc4d3dc4b4ff90840bd70cd8648261ab (diff)
downloadspack-661708b7facbcc4c4fab7b7592e605e1d63de7b4.tar.gz
spack-661708b7facbcc4c4fab7b7592e605e1d63de7b4.tar.bz2
spack-661708b7facbcc4c4fab7b7592e605e1d63de7b4.tar.xz
spack-661708b7facbcc4c4fab7b7592e605e1d63de7b4.zip
Fixes Flake8 indentation errors.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/platforms/cray.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/spack/platforms/cray.py b/lib/spack/spack/platforms/cray.py
index 2883a35ec7..2bd2a40463 100644
--- a/lib/spack/spack/platforms/cray.py
+++ b/lib/spack/spack/platforms/cray.py
@@ -27,9 +27,9 @@ def _target_from_clean_env(name):
# CAUTION - $USER is generally needed to initialize the environment.
# There may be other variables needed for general success.
output = env('USER=%s' % os.environ['USER'],
- '/bin/bash', '--noprofile', '--norc', '-c',
- '. /etc/profile; module list -lt',
- output=str, error=str)
+ '/bin/bash', '--noprofile', '--norc', '-c',
+ '. /etc/profile; module list -lt',
+ output=str, error=str)
default_modules = [i for i in output.splitlines()
if len(i.split()) == 1]
tty.debug("Found default modules:",