From 35214e30125c21b6418d204da18223dcb84c5647 Mon Sep 17 00:00:00 2001 From: Olivier Mangin Date: Fri, 15 Jan 2016 17:29:39 -0500 Subject: [PATCH] Fix using str instead of ustr for python2 compatibility. --- pubs/uis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubs/uis.py b/pubs/uis.py index 1fe8bf0..23bc548 100644 --- a/pubs/uis.py +++ b/pubs/uis.py @@ -87,7 +87,7 @@ class PrintUI(object): if self.debug: raise exc else: - self.error(str(exc)) + self.error(ustr(exc)) self.exit()