From fa7b780b862ae1a84441f506de7dc208b3c474cc Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Wed, 24 Jun 2015 23:08:28 -0700 Subject: [PATCH] Fix singular/plural issue in move subcommand. --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 4b403764f..ff5a807c9 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1354,7 +1354,7 @@ def move_items(lib, dest, query, copy, album, pretend): action = 'Copying' if copy else 'Moving' entity = 'album' if album else 'item' - log.info(u'{0} {1} {2}s.', action, len(objs), entity) + log.info(u'{0} {1} {2}{3}.', action, len(objs), entity, 's' if len(objs)>1 else '') if pretend: if album: show_path_changes([(item.path, item.destination(basedir=dest))