Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos-caddy
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
Guillaume Hervier
slapos-caddy
Commits
009513b1
Commit
009513b1
authored
Jan 18, 2018
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Plain Diff
Update Release Candidate
parents
1187909a
f4996619
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
slapos/recipe/librecipe/generic.py
slapos/recipe/librecipe/generic.py
+3
-3
No files found.
slapos/recipe/librecipe/generic.py
View file @
009513b1
...
...
@@ -65,9 +65,9 @@ class GenericBaseRecipe(object):
def
_ws
(
self
):
# getWorkingSet() is slow and it is not always needed.
# So _ws should be a lazy attribute.
if
getattr
(
self
,
'_
_ws
'
,
None
)
is
None
:
self
.
_
_ws
=
self
.
getWorkingSet
()
return
self
.
_
_ws
if
getattr
(
self
,
'_
ws_internal
'
,
None
)
is
None
:
self
.
_
ws_internal
=
self
.
getWorkingSet
()
return
self
.
_
ws_internal
def
update
(
self
):
"""By default update method does the same thing than install"""
...
...
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