Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
isaak yansane-sisk
slapos.buildout
Commits
29af717c
Commit
29af717c
authored
Aug 24, 2012
by
Domen Kožar
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.6.x' of
https://github.com/buildout/buildout
into 1.6.x
parents
7490f058
28a29336
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+5
-2
No files found.
src/zc/buildout/buildout.py
View file @
29af717c
...
@@ -423,11 +423,14 @@ class Buildout(UserDict.DictMixin):
...
@@ -423,11 +423,14 @@ class Buildout(UserDict.DictMixin):
def
_init_config
(
self
,
config_file
,
args
):
def
_init_config
(
self
,
config_file
,
args
):
print
'Creating %r.'
%
config_file
print
'Creating %r.'
%
config_file
f
=
open
(
config_file
,
'w'
)
f
=
open
(
config_file
,
'w'
)
sep
=
re
.
compile
(
r'[\\/]'
)
if
args
:
if
args
:
sep
=
re
.
compile
(
r'[\\/]'
)
ossep
=
os
.
path
.
sep
if
ossep
==
'
\
\
'
:
ossep
=
'
\
\
\
\
'
# re.sub does not like a single backslash
eggs
=
'
\
n
'
.
join
(
a
for
a
in
args
if
not
sep
.
search
(
a
))
eggs
=
'
\
n
'
.
join
(
a
for
a
in
args
if
not
sep
.
search
(
a
))
paths
=
'
\
n
'
.
join
(
paths
=
'
\
n
'
.
join
(
sep
.
sub
(
os
.
path
.
sep
,
a
)
for
a
in
args
if
sep
.
search
(
a
))
sep
.
sub
(
ossep
,
a
)
for
a
in
args
if
sep
.
search
(
a
))
f
.
write
(
'[buildout]
\
n
'
f
.
write
(
'[buildout]
\
n
'
'parts = py
\
n
'
'parts = py
\
n
'
'
\
n
'
'
\
n
'
...
...
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