Commit ea4d5055 by Michael DeHaan

Merge pull request #870 from dhozac/setup-archtecture

Fix spelling of architecture for non-x86
parents 7d50a5c2 ae964b97
...@@ -78,7 +78,7 @@ class Facts(object): ...@@ -78,7 +78,7 @@ class Facts(object):
elif Facts._I386RE.search(self.facts['machine']): elif Facts._I386RE.search(self.facts['machine']):
self.facts['architecture'] = 'i386' self.facts['architecture'] = 'i386'
else: else:
self.facts['archtecture'] = self.facts['machine'] self.facts['architecture'] = self.facts['machine']
if self.facts['system'] == 'Linux': if self.facts['system'] == 'Linux':
self.get_distribution_facts() self.get_distribution_facts()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment