summary refs log tree commit diff stats
path: root/ranger/api/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/api/commands.py')
-rw-r--r--ranger/api/commands.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ranger/api/commands.py b/ranger/api/commands.py
index 35e073cc..9985b996 100644
--- a/ranger/api/commands.py
+++ b/ranger/api/commands.py
@@ -423,9 +423,11 @@ class FunctionCommand(Command):
             if ranger.args.debug:
                 raise
             else:
-                self.fm.notify("Bad arguments for %s.%s: %s, %s" %
-                               (self._object_name, self._function_name,
-                                repr(args), repr(keywords)), bad=True)
+                self.fm.notify(
+                    "Bad arguments for %s.%s: %s, %s" % (
+                        self._object_name, self._function_name, repr(args), repr(keywords)),
+                    bad=True,
+                )
 
 
 class AliasCommand(Command):