From 185ef3255129540872c8fca5837c7aee7d47e994 Mon Sep 17 00:00:00 2001 From: Peter Schnebel Date: Thu, 17 Oct 2013 23:39:59 +0200 Subject: [PATCH 1/3] removed duplicate --- docs/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index 4408e0c50..48812c1aa 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -202,7 +202,7 @@ Why does beets… There are a number of possibilities: - First, make sure the album is in `the MusicBrainz - database `__ the MusicBrainz database. You + database `__. You can search on their site to make sure it's cataloged there. (If not, anyone can edit MusicBrainz---so consider adding the data yourself.) - If the album in question is a multi-disc release, see the relevant From 840bf15e5bc3b9b42c4d2dc0069c6133989d8eb9 Mon Sep 17 00:00:00 2001 From: Peter Schnebel Date: Fri, 18 Oct 2013 12:52:22 +0200 Subject: [PATCH 2/3] fixed typo --- docs/plugins/rewrite.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/rewrite.rst b/docs/plugins/rewrite.rst index c1bdecb9b..8a139b806 100644 --- a/docs/plugins/rewrite.rst +++ b/docs/plugins/rewrite.rst @@ -16,7 +16,7 @@ example above:: rewrite: artist The Jimi Hendrix Experience: Jimi Hendrix -This will make ``$artist`` in your path formats expand to "Jimi Henrix" where it +This will make ``$artist`` in your path formats expand to "Jimi Hendrix" where it would otherwise be "The Jimi Hendrix Experience". The pattern is a case-insensitive regular expression. This means you can use From c82cd29081ffb1efca8f816982aa67f5a5f5daad Mon Sep 17 00:00:00 2001 From: Peter Schnebel Date: Fri, 18 Oct 2013 14:10:16 +0200 Subject: [PATCH 3/3] requires 'self' --- docs/dev/plugins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/plugins.rst b/docs/dev/plugins.rst index 186a7689b..eacd3c271 100644 --- a/docs/dev/plugins.rst +++ b/docs/dev/plugins.rst @@ -374,7 +374,7 @@ plugin will be used if we issue a command like ``beet ls @something`` or return pattern == val class ExactMatchPlugin(BeetsPlugin): - def queries(): + def queries(self): return { '@': ExactMatchQuery }