From 9e83c7676245f09ed7fa20ceb0d865c21952868d Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 29 Aug 2015 12:57:59 -0700 Subject: [PATCH] Changelog for #1582 --- beets/ui/commands.py | 2 +- docs/changelog.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 37b7ddc0a..2a37a113d 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -974,7 +974,7 @@ def list_func(lib, opts, args): list_cmd = ui.Subcommand('list', help='query the library', aliases=('ls',)) list_cmd.parser.usage += "\n" \ - 'Example: %prog -af \'$album: $title\' artist:beatles' + 'Example: %prog -f \'$album: $title\' artist:beatles' list_cmd.parser.add_all_common_options() list_cmd.func = list_func default_commands.append(list_cmd) diff --git a/docs/changelog.rst b/docs/changelog.rst index da139ec54..344702e34 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -25,6 +25,8 @@ Fixes: causing lots of unnecessary delays due to DBpedia downtime). To re-enable these sources, add ``wikipedia google`` to your ``sources`` configuration option. +* The :ref:`list-cmd` command's help output now has a small query and format + string example. Thanks to :user:`pkess`. :bug:`1582` 1.3.14 (August 2, 2015)