Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f84c38a

Browse files
committed
Damn another occurrence of using as as a keywordf
1 parent 3114608 commit f84c38a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/plat-mac/applesingle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ def decode(infile, outpath, resonly=False, verbose=False):
119119
infile = infile.as_pathname()
120120
infile = open(infile, 'rb')
121121

122-
as = AppleSingle(infile, verbose=verbose)
123-
as.tofile(outpath, resonly=resonly)
122+
asfile = AppleSingle(infile, verbose=verbose)
123+
asfile.tofile(outpath, resonly=resonly)
124124

125125
def _test():
126126
if len(sys.argv) < 3 or sys.argv[1] == '-r' and len(sys.argv) != 4:

0 commit comments

Comments
 (0)