]> granicus.if.org Git - python/commitdiff
Damn another occurrence of using as as a keywordf
authorNeal Norwitz <nnorwitz@gmail.com>
Wed, 22 Mar 2006 07:13:30 +0000 (07:13 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Wed, 22 Mar 2006 07:13:30 +0000 (07:13 +0000)
Lib/plat-mac/applesingle.py

index 56d73a7b05e6b344da38c7ffbcf1fe0ec6f2ee43..b035d9eb1dcfe0807a82767aa93fb147d81e5a87 100644 (file)
@@ -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: