From 966adbbf703443839290f5bb043834d326d189b1 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Tue, 22 May 2018 12:11:18 +0200 Subject: [PATCH] Replace non-ascii char in cnfvar, import print from future --- src/cnfvar.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/cnfvar.py b/src/cnfvar.py index fe0e0a1..d804fd9 100644 --- a/src/cnfvar.py +++ b/src/cnfvar.py @@ -24,7 +24,7 @@ summary ------------------------------------------------------------------------------- Represent CNF_VARs as recursive structures. -Copyright: 2014–2017 Intra2net AG +Copyright: 2014-2017 Intra2net AG License: GPLv2+ @@ -98,6 +98,8 @@ implementation ------------------------------------------------------------------------------- """ +from __future__ import print_function + import functools import sys import json -- 1.7.1