From 27e8a704c5f836cc2ab5f0bfca42cf0b46cd5293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serdar=20Dalg=C4=B1=C3=A7?= Date: Wed, 16 Dec 2009 09:37:28 +0000 Subject: [PATCH] do not directly print, use ctx.ui.info. Otherwise it gives error with LC_ALL=C --- pisi/cli/blame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/cli/blame.py b/pisi/cli/blame.py index c95ab6f5..357e7896 100644 --- a/pisi/cli/blame.py +++ b/pisi/cli/blame.py @@ -67,4 +67,4 @@ Usage: blame ... s += _('Release Updater: %s <%s>\n') % (package.history[hno].name, package.history[hno].email) s += _('Update Date: %s\n') % package.history[hno].date s += '\n%s\n' % package.history[hno].comment - print s + ctx.ui.info(s)