Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SlapOS Develop
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eric Zheng
SlapOS Develop
Commits
8d46eb27
Commit
8d46eb27
authored
Feb 21, 2012
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No need to rename variable if it's properly names to begin with.
parent
d065de94
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
slapos/recipe/mkdirectory.py
slapos/recipe/mkdirectory.py
+1
-5
No files found.
slapos/recipe/mkdirectory.py
View file @
8d46eb27
...
@@ -36,13 +36,9 @@ class Recipe(GenericBaseRecipe):
...
@@ -36,13 +36,9 @@ class Recipe(GenericBaseRecipe):
self
.
mode
=
int
(
self
.
directory
.
pop
(
'mode'
,
'700'
),
8
)
self
.
mode
=
int
(
self
.
directory
.
pop
(
'mode'
,
'700'
),
8
)
def
install
(
self
):
def
install
(
self
):
for
path
in
sorted
(
self
.
directory
.
values
()):
for
directory
in
sorted
(
self
.
directory
.
values
()):
path
=
directory
if
not
os
.
path
.
exists
(
path
):
if
not
os
.
path
.
exists
(
path
):
os
.
makedirs
(
path
,
self
.
mode
)
os
.
makedirs
(
path
,
self
.
mode
)
elif
not
os
.
path
.
isdir
(
path
):
elif
not
os
.
path
.
isdir
(
path
):
raise
OSError
(
"%s path exits, but it's not a directory."
)
raise
OSError
(
"%s path exits, but it's not a directory."
)
return
[]
return
[]
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