From ae964b97c453aa55cc2687b2af2ac17c554847d0 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Tue, 14 Aug 2012 15:57:54 +0200 Subject: [PATCH] Fix spelling of architecture for non-x86 --- library/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/setup b/library/setup index 37cf5daf2d7..d9cb7a1a5a0 100755 --- a/library/setup +++ b/library/setup @@ -78,7 +78,7 @@ class Facts(object): elif Facts._I386RE.search(self.facts['machine']): self.facts['architecture'] = 'i386' else: - self.facts['archtecture'] = self.facts['machine'] + self.facts['architecture'] = self.facts['machine'] if self.facts['system'] == 'Linux': self.get_distribution_facts()