This commit is contained in:
Thomas Scholtes 2014-03-11 00:11:03 +01:00
parent 0012ba5bd9
commit 4c41a02c72
2 changed files with 3 additions and 1 deletions

View file

@ -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/

View file

@ -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')