From eb9870c8ebd4a4c042a2152be80b289eb2366e28 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 25 Feb 2010 20:36:30 -0600 Subject: use isSparc not isSPARC the function to determine what machine we are is isSparc not isSPARC correct typo --- iutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit