Commit e371043f authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix a mistake; error_list should be a list.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30417 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 32f5d29a
......@@ -2727,7 +2727,7 @@ class Base( CopyContainer,
try:
self._checkConsistency(fixit=fixit)
except Unauthorized:
error_list = getUnauthorizedErrorMessage(self)
error_list = [getUnauthorizedErrorMessage(self)]
# We are looking inside all instances in constraints, then we check
# the consistency for all of them
......
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