Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
13245d4c
Commit
13245d4c
authored
Mar 01, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Handle error more precisely in download function
parent
abecde7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+8
-4
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
13245d4c
...
...
@@ -401,11 +401,15 @@ class TemplateTool (BaseTool):
for path in template_version_path_list:
try:
file = open(os.path.normpath(
format_version_
path))
file = open(os.path.normpath(path))
except IOError:
pass
format_version = int(file.read())
file.close()
continue
try:
format_version = int(file.read())
file.close()
except UnboundLocalError:
# In case none of the above paths do have template_format_version
format_version = 1
# XXX: Download only needed in case the file is in directory
bt = self._download_local(os.path.normpath(name), id, format_version)
...
...
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