diff options
author | Mario Melara <maamelara@gmail.com> | 2015-12-02 10:15:33 -0800 |
---|---|---|
committer | Mario Melara <maamelara@gmail.com> | 2015-12-02 10:15:33 -0800 |
commit | 028cca16e66c4a7dd867ef6be4cf38db9daa6e51 (patch) | |
tree | 300b5630c4bc9a88c7f1e3b885d09773e2e56740 /lib | |
parent | 0544b164fc717f5221d7545139c18752129499d4 (diff) | |
download | spack-028cca16e66c4a7dd867ef6be4cf38db9daa6e51.tar.gz spack-028cca16e66c4a7dd867ef6be4cf38db9daa6e51.tar.bz2 spack-028cca16e66c4a7dd867ef6be4cf38db9daa6e51.tar.xz spack-028cca16e66c4a7dd867ef6be4cf38db9daa6e51.zip |
Got rid of the unusued default strategy=None
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/architecture.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/architecture.py b/lib/spack/spack/architecture.py index 786ef34071..a53222d36f 100644 --- a/lib/spack/spack/architecture.py +++ b/lib/spack/spack/architecture.py @@ -54,7 +54,6 @@ class Target(object): also the module_name (e.g craype-compiler). Targets will also recognize which architecture they came from using the set_architecture method. Targets will have compiler finding strategies """ - default_strategy = None # Can probably add a compiler path here def __init__(self,name, module_name=None): self.name = name # case of cray "ivybridge" but if it's x86_64 @@ -99,7 +98,8 @@ class Target(object): @key_ordering class Architecture(object): - """ Abstract class that each type of Architecture will subclass. Will return a instance of it once it + """ Abstract class that each type of Architecture will subclass. + Will return a instance of it once it is returned """ |