From f7f1c260d664d54fb7714d4640c1819fe97a2304 Mon Sep 17 00:00:00 2001 From: Ammar Tareen Date: Tue, 14 May 2019 20:30:15 -0400 Subject: [PATCH] Adding print_function import from __future__ so that print has python 3 behavior --- logomaker/tests/functional_tests_logomaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logomaker/tests/functional_tests_logomaker.py b/logomaker/tests/functional_tests_logomaker.py index 04adf92..4e3c64a 100644 --- a/logomaker/tests/functional_tests_logomaker.py +++ b/logomaker/tests/functional_tests_logomaker.py @@ -1,4 +1,4 @@ -#from __future__ import print_function # so that print behaves like python 3.x not a special lambda statement +from __future__ import print_function # so that print behaves like python 3.x not a special lambda statement import sys sys.path.append('../../')