summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjprotze <protze@rz.rwth-aachen.de>2014-02-07 14:19:16 +0100
committerjprotze <protze@rz.rwth-aachen.de>2014-02-07 14:19:16 +0100
commitf6a484519e836af91ec77ccc16c5b1e05cf95364 (patch)
treed0266fa900bef466929ae4749eab110275c7efca /lib
parent73774c1249fb22f28b28346bd9ca5819104ce4c6 (diff)
downloadspack-f6a484519e836af91ec77ccc16c5b1e05cf95364.tar.gz
spack-f6a484519e836af91ec77ccc16c5b1e05cf95364.tar.bz2
spack-f6a484519e836af91ec77ccc16c5b1e05cf95364.tar.xz
spack-f6a484519e836af91ec77ccc16c5b1e05cf95364.zip
fix alias naming
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/arch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/arch.py b/lib/spack/spack/cmd/arch.py
index aeb2ba3ff8..f0e88d1849 100644
--- a/lib/spack/spack/cmd/arch.py
+++ b/lib/spack/spack/cmd/arch.py
@@ -28,8 +28,8 @@ import spack.architecture as architecture
description = "Print the architecture for this machine"
def arch(parser, args):
- configured_sys_type = arch.get_sys_type_from_spack_globals()
+ configured_sys_type = architecture.get_sys_type_from_spack_globals()
if not configured_sys_type:
configured_sys_type = "autodetect"
print "Configured sys_type: %s" % configured_sys_type
- print "Autodetected default sys_type: %s" % arch.sys_type()
+ print "Autodetected default sys_type: %s" % architecture.sys_type()