diff --git a/src/fwfetcher.py b/src/fwfetcher.py index 51dde4a5..7095d797 100644 --- a/src/fwfetcher.py +++ b/src/fwfetcher.py @@ -531,11 +531,11 @@ def getFileOrURL(filename, url): return retval def extractPirsFromZip(systemupdate): - print "Extracting $systemupdate/FFFE07DF00000001 from system update file..." + print "Extracting $Systemupdate/FFFE07DF00000001 from system update file..." updatefile = StringIO.StringIO(systemupdate) z = zipfile.ZipFile(updatefile) #print z.namelist() - pirs = z.open("$systemupdate/FFFE07DF00000001").read() + pirs = z.open("$Systemupdate/FFFE07DF00000001").read() print "done." return pirs