From 0bef15846fb3a3a0c2c277ee7bc22ace719a47b6 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 13 Sep 2008 01:56:56 +0000 Subject: Fix SyntaxError --- Demo/rpc/nfsclient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/rpc/nfsclient.py b/Demo/rpc/nfsclient.py index 09e78dd..dc91491 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) -- cgit v0.12