summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-22 07:12:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-22 07:12:41 (GMT)
commitf84c38a39ad9b870a43d35fba7d0f3586a492176 (patch)
treef782b7ae49c6651ac273a6216064f8ed3dd1db6a
parent3114608c518866ffda706fb9bf466ed980f69356 (diff)
downloadcpython-f84c38a39ad9b870a43d35fba7d0f3586a492176.zip
cpython-f84c38a39ad9b870a43d35fba7d0f3586a492176.tar.gz
cpython-f84c38a39ad9b870a43d35fba7d0f3586a492176.tar.bz2
Damn another occurrence of using as as a keywordf
-rw-r--r--Lib/plat-mac/applesingle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/applesingle.py b/Lib/plat-mac/applesingle.py
index 56d73a7..b035d9e 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: