Skip to content

Commit

Permalink
Fix capitalization in fwfetcher.py - fixes #435
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 Mar 2, 2015
1 parent da2d8ba commit 95ae970
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 95ae970

Please sign in to comment.