From 277d81b4d62a1eb301372ea9da894f930f42b773 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 30 Jan 2018 22:33:32 -0500 Subject: [PATCH] lyrics: Don't write ReST by default! --- beetsplug/lyrics.py | 2 +- docs/changelog.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 7dba483ba..3d5f38d9a 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -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( diff --git a/docs/changelog.rst b/docs/changelog.rst index e93e644c0..2c6833456 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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)