Skip to content

Commit b873710

Browse files
author
andrew.kuchling
committed
Fix SyntaxError
git-svn-id: http://svn.python.org/projects/python/trunk@66431 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent a8b3b4a commit b873710

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Demo/rpc/nfsclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ def test():
194194
fh = sf[1]
195195
if fh:
196196
ncl = NFSClient(host)
197-
as = ncl.Getattr(fh)
198-
print as
197+
attrstat = ncl.Getattr(fh)
198+
print attrstat
199199
list = ncl.Listdir(fh)
200200
for item in list: print item
201201
mcl.Umnt(filesys)

0 commit comments

Comments
 (0)