From 31ef5ba0bd4ea94d0efdbfb52683eb41ecba750a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 27 Aug 2017 10:11:34 +0100 Subject: Fix: disable unicode_literals from the future This should fix obnam. --- cliapp/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliapp/settings.py b/cliapp/settings.py index 9698791..50cf51e 100644 --- a/cliapp/settings.py +++ b/cliapp/settings.py @@ -14,7 +14,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -from __future__ import print_function, unicode_literals +from __future__ import print_function # unicode_literals try: from configparser import ConfigParser -- cgit v1.2.1