]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix SyntaxError
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 13 Sep 2008 01:56:56 +0000 (01:56 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 13 Sep 2008 01:56:56 +0000 (01:56 +0000)
Demo/rpc/nfsclient.py

index 09e78dda8f938102b9bbb9c61c8410ae4046faa4..dc914914738f52be6e01fd153696ea2785485562 100644 (file)
@@ -194,8 +194,8 @@ def test():
     fh = sf[1]
     if fh:
         ncl = NFSClient(host)
-        as = ncl.Getattr(fh)
-        print as
+        attrstat = ncl.Getattr(fh)
+        print attrstat
         list = ncl.Listdir(fh)
         for item in list: print item
         mcl.Umnt(filesys)