From: John Mulligan Date: Fri, 28 Jan 2022 16:30:15 +0000 (-0500) Subject: mgr/nfs: fix typo in error message X-Git-Tag: v18.0.0~1333^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=56323a2625133d5a53bf1ee1662346daa1b4f09b;p=ceph.git mgr/nfs: fix typo in error message Signed-off-by: John Mulligan --- diff --git a/src/pybind/mgr/nfs/export.py b/src/pybind/mgr/nfs/export.py index 0c3053a516d71..85135760813bd 100644 --- a/src/pybind/mgr/nfs/export.py +++ b/src/pybind/mgr/nfs/export.py @@ -38,7 +38,7 @@ def export_cluster_checker(func: FuncT) -> FuncT: This method checks if cluster exists """ if kwargs['cluster_id'] not in available_clusters(export.mgr): - return -errno.ENOENT, "", "Cluster does not exists" + return -errno.ENOENT, "", "Cluster does not exist" return func(export, *args, **kwargs) return cast(FuncT, cluster_check)