Skip to content

Commit

Permalink
Fix capitalization in fwfetcher.py again - fixes #443
Browse files Browse the repository at this point in the history
Signed-off-by: Benn Snyder <benn.snyder@gmail.com>
  • Loading branch information
piedar committed May 9, 2015
1 parent 5455843 commit 89f77f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fwfetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 89f77f6

Please sign in to comment.