From a859b5f562fd0549583eb698bf9d25cd40554868 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Fri, 20 Dec 2013 11:14:32 -0500 Subject: [PATCH] Added unicode_literals; thanks Nick --- gramps/cli/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/cli/user.py b/gramps/cli/user.py index 120bf3209..b74e262a6 100644 --- a/gramps/cli/user.py +++ b/gramps/cli/user.py @@ -29,7 +29,7 @@ The User class provides basic interaction with the user. # Python Modules # #------------------------------------------------------------------------ -from __future__ import print_function +from __future__ import print_function, unicode_literals import sys #------------------------------------------------------------------------