Added unicode_literals; thanks Nick

This commit is contained in:
Doug Blank 2013-12-20 11:18:59 -05:00
parent 1e908f8acc
commit 6ad2ec26f7
2 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,7 @@ The User class provides basic interaction with the user.
# Python Modules # Python Modules
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
from __future__ import print_function from __future__ import print_function, unicode_literals
import sys import sys
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -22,6 +22,8 @@
# $Id$ # $Id$
from __future__ import unicode_literals
""" """
A utility to make a best guess if a person is alive. This is used to provide A utility to make a best guess if a person is alive. This is used to provide
privacy in reports and exports. privacy in reports and exports.