doc/mgr: fix quoting error in python example

Found by vim syntax highlighting. Thanks vim!

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2022-07-20 13:14:29 -04:00
parent 481776becf
commit 30d3e5bab5

View File

@ -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