From: Sage Weil Date: Mon, 5 Aug 2019 21:23:57 +0000 (-0500) Subject: mgr/hello: typos X-Git-Tag: v15.1.0~1935^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7e10b70615bafc19fd292fd799c9a7247132b3e8;p=ceph-ci.git mgr/hello: typos Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/hello/module.py b/src/pybind/mgr/hello/module.py index cc3537cd326..480b61c0ea2 100644 --- a/src/pybind/mgr/hello/module.py +++ b/src/pybind/mgr/hello/module.py @@ -65,7 +65,7 @@ class Hello(MgrModule): def __init__(self, *args, **kwargs): super(Hello, self).__init__(*args, **kwargs) - # set up some members to enable the serve() method and shutdown + # set up some members to enable the serve() method and shutdown() self.run = True self.event = Event() @@ -140,7 +140,7 @@ class Hello(MgrModule): def shutdown(self): """ This method is called by the mgr when the module needs to shut - down (i.e., when the serve() function needs to exit. + down (i.e., when the serve() function needs to exit). """ self.log.info('Stopping') self.run = False