diff --git a/docs/changelog.rst b/docs/changelog.rst index ec8fb3759..47dfb1221 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -47,6 +47,8 @@ Fixes: * :doc:`/plugins/fetchart`: The plugin now sends "beets" as the User-Agent when making scraping requests. This helps resolve some blocked requests. The plugin now also depends on the `requests`_ Python library. +* The :ref:`write-cmd` now only shows the changes to fields that will actually + be written to a file. .. _requests: http://www.python-requests.org/ diff --git a/test/test_ui.py b/test/test_ui.py index 7bd3e49d0..2c6e3ff6d 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -493,7 +493,7 @@ class ConfigTest(_common.TestCase): if 'BEETSDIR' in os.environ: del os.environ['BEETSDIR'] if os.getcwd != self._orig_cwd: - os.chidr(self.self._orig_cwd) + os.chdir(self._orig_cwd) def _make_test_cmd(self): test_cmd = ui.Subcommand('test', help='test')