From 58ea48aa3b9f06055102c13bedef16733801397c Mon Sep 17 00:00:00 2001 From: arbanhossain Date: Tue, 19 Apr 2022 11:22:31 +0600 Subject: [PATCH] removed over-indentation --- beets/ui/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index acc1a7fc3..900cb9305 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -1131,7 +1131,7 @@ def _load_plugins(options, config): # Exclude any plugins that were specified on the command line if options.exclude is not None: plugin_list = [p for p in plugin_list - if p not in options.exclude.split(',')] + if p not in options.exclude.split(',')] plugins.load_plugins(plugin_list) return plugins