Commit f84c38a3 authored by Neal Norwitz's avatar Neal Norwitz

Damn another occurrence of using as as a keywordf

parent 3114608c
......@@ -119,8 +119,8 @@ def decode(infile, outpath, resonly=False, verbose=False):
infile = infile.as_pathname()
infile = open(infile, 'rb')
as = AppleSingle(infile, verbose=verbose)
as.tofile(outpath, resonly=resonly)
asfile = AppleSingle(infile, verbose=verbose)
asfile.tofile(outpath, resonly=resonly)
def _test():
if len(sys.argv) < 3 or sys.argv[1] == '-r' and len(sys.argv) != 4:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment