# HG changeset patch # User Marcin Kuzminski # Date 2017-11-26 21:19:46 # Node ID 467c2f862fe29cc1b1045be3b1823bb40f97d6da # Parent 539f2965e5e8a22ab5f0fa862a0186ab73e5a023 python3: fix compatibility call on print function. diff --git a/rhodecode/lib/db_manage.py b/rhodecode/lib/db_manage.py --- a/rhodecode/lib/db_manage.py +++ b/rhodecode/lib/db_manage.py @@ -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):