##// END OF EJS Templates
python3: fix compatibility call on print function.
marcink -
r2401:467c2f86 default
parent child Browse files
Show More
@@ -54,7 +54,7 b' def notify(msg):'
54 Notification for migrations messages
54 Notification for migrations messages
55 """
55 """
56 ml = len(msg) + (4 * 2)
56 ml = len(msg) + (4 * 2)
57 print('\n%s\n*** %s ***\n%s' % ('*' * ml, msg, '*' * ml)).upper()
57 print(('\n%s\n*** %s ***\n%s' % ('*' * ml, msg, '*' * ml)).upper())
58
58
59
59
60 class DbManage(object):
60 class DbManage(object):
General Comments 0
You need to be logged in to leave comments. Login now