[Python-checkins] r66431 - python/trunk/Demo/rpc/nfsclient.py

andrew.kuchling python-checkins at python.org
Sat Sep 13 03:56:56 CEST 2008


Author: andrew.kuchling
Date: Sat Sep 13 03:56:56 2008
New Revision: 66431

Log:
Fix SyntaxError

Modified:
   python/trunk/Demo/rpc/nfsclient.py

Modified: python/trunk/Demo/rpc/nfsclient.py
==============================================================================
--- python/trunk/Demo/rpc/nfsclient.py	(original)
+++ python/trunk/Demo/rpc/nfsclient.py	Sat Sep 13 03:56:56 2008
@@ -194,8 +194,8 @@
     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)


More information about the Python-checkins mailing list