]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/hello: typos 29514/head
authorSage Weil <sage@redhat.com>
Mon, 5 Aug 2019 21:23:57 +0000 (16:23 -0500)
committerSage Weil <sage@redhat.com>
Wed, 7 Aug 2019 14:27:21 +0000 (09:27 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/pybind/mgr/hello/module.py

index cc3537cd326aef758cb3d6e75e6d08201d0ddab1..480b61c0ea22465f92fee4ce8a1f18a675fedd07 100644 (file)
@@ -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