mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Fix #2817: drop in configuration was ignored
This was overridden by the default CLI option. Now the default for the config option is None, meaning no change to the config.
This commit is contained in:
parent
323d90db17
commit
a6be28a65e
2 changed files with 4 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class FtInTitlePlugin(plugins.BeetsPlugin):
|
|||
|
||||
self._command.parser.add_option(
|
||||
u'-d', u'--drop', dest='drop',
|
||||
action='store_true', default=False,
|
||||
action='store_true', default=None,
|
||||
help=u'drop featuring from artists and ignore title update')
|
||||
|
||||
if self.config['auto']:
|
||||
|
|
|
|||
|
|
@ -56,6 +56,9 @@ Fixes:
|
|||
incompatible between the source and target file formats.
|
||||
:bug:`2814`
|
||||
Thanks to :user:`autrimpo`.
|
||||
* :doc:`/plugins/ftintitle`: The ``drop`` config option had no effect; it now
|
||||
does what it says it should do.
|
||||
:bug:`2817`
|
||||
|
||||
For developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue