summaryrefslogtreecommitdiffstats
path: root/iredis/bottom.py
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/bottom.py')
-rw-r--r--iredis/bottom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iredis/bottom.py b/iredis/bottom.py
index 28746f8..17c3af3 100644
--- a/iredis/bottom.py
+++ b/iredis/bottom.py
@@ -24,12 +24,12 @@ class BottomToolbar:
def render(self):
text = BUTTOM_TEXT
- # add command help if valide
+ # add command help if valid
if self.command_holder.command:
try:
command_info = commands_summary[self.command_holder.command]
text = command_syntax(self.command_holder.command, command_info)
except KeyError as e:
logger.exception(e)
- pass
+
return text