From 8b7af7fe23dffef479e817d05e329472c7c88d56 Mon Sep 17 00:00:00 2001 From: Jack Wilsdon Date: Fri, 11 Sep 2015 18:38:30 +0100 Subject: [PATCH] Fix indentation for wrapped method call --- beetsplug/hook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/hook.py b/beetsplug/hook.py index 5d15a55aa..ed6fa4e93 100644 --- a/beetsplug/hook.py +++ b/beetsplug/hook.py @@ -101,7 +101,7 @@ class HookPlugin(BeetsPlugin): hook_command = hook_command.replace(original, hook_event) hook_function = create_hook_function(self._log, hook_event, - hook_command, shell, - substitute_args) + hook_command, shell, + substitute_args) self.register_listener(hook_event, hook_function)