From: Andrew M. Kuchling Date: Sat, 13 Sep 2008 01:56:56 +0000 (+0000) Subject: Fix SyntaxError X-Git-Tag: v2.6rc2~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bef15846fb3a3a0c2c277ee7bc22ace719a47b6;p=thirdparty%2FPython%2Fcpython.git Fix SyntaxError --- diff --git a/Demo/rpc/nfsclient.py b/Demo/rpc/nfsclient.py index 09e78dda8f93..dc914914738f 100644 --- a/Demo/rpc/nfsclient.py +++ b/Demo/rpc/nfsclient.py @@ -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)