From: Neal Norwitz Date: Wed, 22 Mar 2006 07:13:30 +0000 (+0000) Subject: Damn another occurrence of using as as a keywordf X-Git-Tag: v2.5a0~137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8142cb6f20b4a20bfa168a6b6582b5df2192e824;p=python Damn another occurrence of using as as a keywordf --- diff --git a/Lib/plat-mac/applesingle.py b/Lib/plat-mac/applesingle.py index 56d73a7b05..b035d9eb1d 100644 --- a/Lib/plat-mac/applesingle.py +++ b/Lib/plat-mac/applesingle.py @@ -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: