From b93ea8e2591c39aab73dbc615f1e99c2e93a1577 Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Tue, 16 Oct 2018 03:14:10 +0300 Subject: [PATCH] fixed some print statement to be python3 compatible --- modules/django.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/django.py b/modules/django.py index 55d3737..b9290ad 100644 --- a/modules/django.py +++ b/modules/django.py @@ -399,12 +399,12 @@ def generate(param=None, make_copy=False): import sys sys.exit(err_msg) - print "django:generate make_copy : %s\n" % make_copy - print "django:generate script : %s" % param + print("django:generate make_copy : %s\n" % make_copy) + print("django:generate script : %s" % param) if env.debug: - print "django:generate script : %s" % param - print "django:generate make_copy : %s\n" % make_copy + print("django:generate script : %s" % param) + print("django:generate make_copy : %s\n" % make_copy) else: pass # env.debug does not block the rest of the commands because this