diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index 48ed7f615..270e72566 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -50,6 +50,8 @@ def print_(*strings): txt = u' '.join(strings) else: txt = ' '.join(strings) + else: + txt = u'' if isinstance(txt, unicode): encoding = locale.getdefaultlocale()[1] txt = txt.encode(encoding, 'replace')