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: v17.2.6~497^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ef28b611f4df3bd1de8ee40b7283d6ad9024d5e6;p=ceph.git doc/mgr: fix quoting error in python example Found by vim syntax highlighting. Thanks vim! Signed-off-by: John Mulligan (cherry picked from commit 30d3e5bab5436735747310d13238bd409f2f41d8) --- diff --git a/doc/mgr/modules.rst b/doc/mgr/modules.rst index 8fea5624141..93a589b52dd 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