diff options
author | George Hartzell <hartzell@alerce.com> | 2016-10-26 20:39:08 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-26 20:39:08 -0700 |
commit | bf08bd707678038b27e1738040c1c5ef7dc9983c (patch) | |
tree | 274006fdabaaa01f39c365ca59182d8df9c0cb3c | |
parent | e652a32f0570f36640b3b27ab5f1954014b6f658 (diff) | |
download | spack-bf08bd707678038b27e1738040c1c5ef7dc9983c.tar.gz spack-bf08bd707678038b27e1738040c1c5ef7dc9983c.tar.bz2 spack-bf08bd707678038b27e1738040c1c5ef7dc9983c.tar.xz spack-bf08bd707678038b27e1738040c1c5ef7dc9983c.zip |
Fix typo: _choiches -> _choices (#2127)
The breaks `spack create`.
-rw-r--r-- | lib/spack/spack/cmd/create.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index 5db0601d44..feed3b8772 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -336,7 +336,7 @@ class BuildSystemGuesser(object): self.build_system = build_system def make_guess(self, name, url, ver_hash_tuples): - cls = self._choiches.get(self.build_system, DefaultGuess) + cls = self._choices.get(self.build_system, DefaultGuess) return cls(name, url, ver_hash_tuples) |