fixed some print statement to be python3 compatible
This commit is contained in:
parent
d57781436b
commit
b93ea8e259
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue