Commit af343eef authored by Jérome Perrin's avatar Jérome Perrin Committed by Aurel

ERP5Type: fix transaction.note "expected text" warning with transaction 2

parent 5b723f46
......@@ -377,7 +377,7 @@ class Message(BaseMessage):
# that method !
method = getattr(obj, self.method_id)
transaction.get().note(
'CMFActivity ' + '/'.join(self.object_path) + '/' + self.method_id
u'CMFActivity {}/{}'.format('/'.join(self.object_path), self.method_id)
)
# Store site info
setSite(activity_tool.getParentValue())
......
......@@ -507,7 +507,7 @@ def synchronizeDynamicModules(context, force=False):
portal.portal_skins.changeSkin(None)
TransactionalResource(tpc_finish=lambda txn:
_bootstrapped.add(portal.id))
transaction.get().note('Site migrated')
transaction.get().note(u'Site migrated')
LOG('ERP5Site', INFO, 'Transition successful, please update your'
' business templates')
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment