diff --git a/beets/library.py b/beets/library.py index 439df774e..f202fce40 100644 --- a/beets/library.py +++ b/beets/library.py @@ -1116,6 +1116,7 @@ class Transaction(object): """Execute an SQL statement with substitution values and return the row ID of the last affected row. """ + print statement, subvals cursor = self.lib._connection().execute(statement, subvals) plugins.send('database_change', lib=self.lib) return cursor.lastrowid diff --git a/docs/changelog.rst b/docs/changelog.rst index 2fa8eff34..08cd8f127 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -186,7 +186,7 @@ And a batch of fixes: 1.1.0 (April 29, 2013) ---------------------- +---------------------- This final release of 1.1 brings a little polish to the betas that introduced the new configuration system. The album art and lyrics plugins also got a diff --git a/docs/plugins/bpd.rst b/docs/plugins/bpd.rst index ac7571f80..ac5bd9305 100644 --- a/docs/plugins/bpd.rst +++ b/docs/plugins/bpd.rst @@ -17,9 +17,12 @@ Before you can use BPD, you'll need the media library called GStreamer (along with its Python bindings) on your system. * On Mac OS X, you can use `MacPorts`_ or `Homebrew`_. For MacPorts, just run - ``port install py27-gst-python``. For Homebrew, use ``brew install - gst-python``. (Note that you'll need the Mac OS X Developer Tools in either - case.) + ``port install py27-gst-python``. For Homebrew, the appropriate formulae are + in `homebrew-versions`_, so run ``brew tap homebrew/versions`` and then + ``brew install gst-python010``. (Note that you'll need the Mac OS X + Developer Tools in either case.) + +.. _homebrew-versions: https://github.com/Homebrew/homebrew-versions * On Linux, it's likely that you already have gst-python. (If not, your distribution almost certainly has a package for it.)