From 82c94a926c1f1961932798257d18a2fc306f9393 Mon Sep 17 00:00:00 2001 From: Nigel Babu Date: Fri, 27 Jul 2018 13:02:05 +0530 Subject: Fix spelling mistake across the codebase Change-Id: I46fc2feffe6443af6913785d67bf310838532421 --- glustolibs-gluster/glustolibs/gluster/mount_ops.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'glustolibs-gluster/glustolibs/gluster/mount_ops.py') diff --git a/glustolibs-gluster/glustolibs/gluster/mount_ops.py b/glustolibs-gluster/glustolibs/gluster/mount_ops.py index c0c7cc08e..637af24b1 100644 --- a/glustolibs-gluster/glustolibs/gluster/mount_ops.py +++ b/glustolibs-gluster/glustolibs/gluster/mount_ops.py @@ -322,7 +322,7 @@ def mount_volume(volname, mtype, mpoint, mserver, mclient, options='', ret, out, err = g.run(mclient, mcmd, user=user) if ret != 0: - g.log.error("net use comand failed on windows client %s " + g.log.error("net use command failed on windows client %s " "failed: %s" % (mclient, err)) return (ret, out, err) @@ -332,7 +332,7 @@ def mount_volume(volname, mtype, mpoint, mserver, mclient, options='', "Share is : %s" % (mclient, drv_ltr)) return (ret, drv_ltr, err) - g.log.error("net use comand successful but error in mount of samba " + g.log.error("net use command successful but error in mount of samba " " share for windows client %s for reason %s" % (mclient, err)) return (1, out, err) @@ -370,7 +370,7 @@ def mount_volume(volname, mtype, mpoint, mserver, mclient, options='', if "Santiago" in name: cifs_options = "sec=ntlmssp" except Exception as e: - g.log.error("Exception occured while getting the platform " + g.log.error("Exception occurred while getting the platform " "of node %s: %s", mclient, str(e)) return (1, '', '') finally: -- cgit