From 7e10b70615bafc19fd292fd799c9a7247132b3e8 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 5 Aug 2019 16:23:57 -0500 Subject: [PATCH] mgr/hello: typos Signed-off-by: Sage Weil --- src/pybind/mgr/hello/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3