Skip to content

Commit 89f77f6

Browse files
committed
Fix capitalization in fwfetcher.py again - fixes #443
Signed-off-by: Benn Snyder <[email protected]>
1 parent 5455843 commit 89f77f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fwfetcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,11 +531,11 @@ def getFileOrURL(filename, url):
531531
return retval
532532

533533
def extractPirsFromZip(systemupdate):
534-
print "Extracting $Systemupdate/FFFE07DF00000001 from system update file..."
534+
print "Extracting $SystemUpdate/FFFE07DF00000001 from system update file..."
535535
updatefile = StringIO.StringIO(systemupdate)
536536
z = zipfile.ZipFile(updatefile)
537537
#print z.namelist()
538-
pirs = z.open("$Systemupdate/FFFE07DF00000001").read()
538+
pirs = z.open("$SystemUpdate/FFFE07DF00000001").read()
539539
print "done."
540540
return pirs
541541

0 commit comments

Comments
 (0)