From: Guido van Rossum Date: Tue, 15 Dec 1992 21:44:13 +0000 (+0000) Subject: Fix spelling of Umnt. X-Git-Tag: v0.9.8~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63ae96e3d7a1bf545bdf2c4484aa1cb065e920ea;p=thirdparty%2FPython%2Fcpython.git Fix spelling of Umnt. --- diff --git a/Demo/rpc/mountclient.py b/Demo/rpc/mountclient.py index a0de94b93d07..1015105d5089 100644 --- a/Demo/rpc/mountclient.py +++ b/Demo/rpc/mountclient.py @@ -79,11 +79,11 @@ class PartialMountClient: # This function is called to gobble up a suitable # authentication object for a call to procedure 'proc'. - # (Experiments suggest that for Mnt/Unmnt, Unix authentication + # (Experiments suggest that for Mnt/Umnt, Unix authentication # is necessary, while the other calls require no # authentication.) def mkcred(self, proc): - if proc not in (1, 3, 4): # not Mnt/Unmnt/Unmntall + if proc not in (1, 3, 4): # not Mnt/Umnt/Umntall return rpc.AUTH_NULL, '' if self.cred == None: self.cred = rpc.AUTH_UNIX, rpc.make_auth_unix_default()