lyrics: Don't write ReST by default!

This commit is contained in:
Adrian Sampson 2018-01-30 22:33:32 -05:00
parent e7417e3683
commit 277d81b4d6
2 changed files with 3 additions and 1 deletions

View file

@ -705,7 +705,7 @@ class LyricsPlugin(plugins.BeetsPlugin):
)
cmd.parser.add_option(
u'-r', u'--write-rest', dest='writerest',
action='store', default='.', metavar='dir',
action='store', default=None, metavar='dir',
help=u'write lyrics to given directory as ReST files',
)
cmd.parser.add_option(

View file

@ -27,6 +27,8 @@ Fixes:
* :doc:`/plugins/lyrics`: The plugin no longer crashes in the Genius source
when BeautifulSoup is not found. Instead, it just logs a message and
disables the source.
* :doc:`/plugins/lyrics`: The ``lyrics`` command previously write ReST files
by default. This default has been fixed.
1.4.6 (December 21, 2017)