From 950d89ae09681f8a2d46af98955099380a484426 Mon Sep 17 00:00:00 2001 From: Cassowary Date: Thu, 24 Oct 2024 10:44:31 -0700 Subject: [PATCH] Fix help strings --- multiball/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/multiball/__main__.py b/multiball/__main__.py index 3b03fb0..7fd834a 100644 --- a/multiball/__main__.py +++ b/multiball/__main__.py @@ -84,12 +84,12 @@ COMMANDS = { 'environment': (('/environment', '/env', '/set'), "Set (or print) environment to send to remote host before running commands."), 'clearenv': (('/clearenv',), "Clear environment (entire or single variable)"), 'safety': (('/safety', 'safety'), "Turn on safety or turn off with `off`."), - 'safe': (('/safe'), "Run this command as if it were safe even if safety is on."), - 'confirm': (('/confirm',), "[scripting] Prompt for confirmation"), + 'safe': (('/safe', ), "Run this command as if it were safe even if safety is on."), + 'confirm': (('/confirm',), "[scriptpfing] Prompt for confirmation"), 'echo': (('/echo', ), "[scripting] print string"), 'arguments': (('/arguments',), "[scripting] Abort if no arguments are specified."), # fixme add interpolation - 'unsafe': (('/unsafe'), "[scriptiong] Abort command if safety is on."), + 'unsafe': (('/unsafe', ), "[scriptiong] Abort command if safety is on."), # 'history': (('/history', '/h'), "Show the last 10 commands in the history."), # 'filteralias': (('/filteralias',), "Create a filter alias which allows quick filtering."), # 'undo': (('/undo',), "Undo last host or environment command."),