From: John Mulligan Date: Wed, 20 Jul 2022 17:14:29 +0000 (-0400) Subject: doc/mgr: fix quoting error in python example X-Git-Tag: v18.0.0~130^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=30d3e5bab5436735747310d13238bd409f2f41d8;p=ceph.git doc/mgr: fix quoting error in python example Found by vim syntax highlighting. Thanks vim! Signed-off-by: John Mulligan --- diff --git a/doc/mgr/modules.rst b/doc/mgr/modules.rst index 8fea56241416..93a589b52dd0 100644 --- a/doc/mgr/modules.rst +++ b/doc/mgr/modules.rst @@ -135,7 +135,7 @@ The CLICommand approach else: location = blackhole self.send_object_to(obj, location) - return HandleCommandResult(stdout=f'the black hole swallowed '{oid}'") + return HandleCommandResult(stdout=f"the black hole swallowed '{oid}'") The first parameter passed to ``CLICommand`` is the "name" of the command. Since there are lots of commands in Ceph, we tend to group related commands