summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2010-02-25 20:36:30 -0600
committerDennis Gilmore <dennis@ausil.us>2010-03-05 15:28:05 -0600
commiteb9870c8ebd4a4c042a2152be80b289eb2366e28 (patch)
treee320539853827b448781461f12ff92db32403380
parent8c5a8b14676b1780928d0a54247de9be838492b6 (diff)
downloadanaconda-master.tar.gz
anaconda-master.tar.xz
anaconda-master.zip
use isSparc not isSPARCHEADmaster
the function to determine what machine we are is isSparc not isSPARC correct typo
-rw-r--r--iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iutil.py b/iutil.py
index e2751307c..e1cde5ec5 100644
--- a/iutil.py
+++ b/iutil.py
@@ -499,7 +499,7 @@ def copyDeviceNode(src, dest):
## Get the SPARC machine variety type.
# @return The SPARC machine type, or 0 if not SPARC.
def getSparcMachine():
- if not isSPARC():
+ if not isSparc():
return 0
machine = None