python3: fix compatibility call on print function.
This commit is contained in:
parent
1f7709b880
commit
b891773a32
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ def notify(msg):
|
|||
Notification for migrations messages
|
||||
"""
|
||||
ml = len(msg) + (4 * 2)
|
||||
print('\n%s\n*** %s ***\n%s' % ('*' * ml, msg, '*' * ml)).upper()
|
||||
print(('\n%s\n*** %s ***\n%s' % ('*' * ml, msg, '*' * ml)).upper())
|
||||
|
||||
|
||||
class DbManage(object):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue