Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Amer
erp5
Commits
e1ce3bed
Commit
e1ce3bed
authored
11 years ago
by
Sebastien Robin
Browse files
Options
Download
Email Patches
Plain Diff
business template: improve error message when a dependency is missing
parent
5bb2b846
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+3
-1
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
e1ce3bed
...
...
@@ -5784,7 +5784,9 @@ Business Template is a set of definitions, such as skins, portal types and categ
"""
missing_dep_list
=
self
.
getMissingDependencyList
()
if
len
(
missing_dep_list
)
!=
0
:
raise
BusinessTemplateMissingDependency
,
'Impossible to install, please install the following dependencies before: %s'
%
repr
(
missing_dep_list
)
raise
BusinessTemplateMissingDependency
,
\
'Impossible to install %s, please install the following dependencies before: %s'
\
%
(
self
.
getTitle
(),
repr
(
missing_dep_list
))
def
getMissingDependencyList
(
self
):
"""
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment