From c7a4d261e213ec2dbe93e3cdfd5ce1dc30c18189 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Thu, 23 Jun 2016 01:29:46 -0400 Subject: [PATCH] fix a comment typo in ui/__init__.py --- beets/ui/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index a5fb10ba0..af7fe9aff 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -199,7 +199,7 @@ def input_(prompt=None): input cursor. """ # raw_input incorrectly sends prompts to stderr, not stdout, so we - # use print() explicitly to display prompts. + # use print_() explicitly to display prompts. # http://bugs.python.org/issue1927 if prompt: print_(prompt, end=' ')