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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
d889e07d
Commit
d889e07d
authored
Sep 03, 2012
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make exception expectation even vaguer. Sigh.
Sort dict-based data for consistent output.
parent
136fa15a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
src/zc/buildout/buildout.txt
src/zc/buildout/buildout.txt
+5
-9
No files found.
src/zc/buildout/buildout.txt
View file @
d889e07d
...
@@ -465,8 +465,7 @@ leave previously created paths in place:
...
@@ -465,8 +465,7 @@ leave previously created paths in place:
An internal error occured due to a bug in either zc.buildout or in a
An internal error occured due to a bug in either zc.buildout or in a
recipe being used:
recipe being used:
Traceback (most recent call last):
Traceback (most recent call last):
...
... exists...
OSError: ... exists...
We meant to create a directory bins, but typed bin. Now foo was
We meant to create a directory bins, but typed bin. Now foo was
left behind.
left behind.
...
@@ -497,8 +496,7 @@ If we fix the typo:
...
@@ -497,8 +496,7 @@ If we fix the typo:
An internal error occured due to a bug in either zc.buildout or in a
An internal error occured due to a bug in either zc.buildout or in a
recipe being used:
recipe being used:
Traceback (most recent call last):
Traceback (most recent call last):
...
... exists...
OSError: ... exists...
Now they fail because foo exists, because it was left behind.
Now they fail because foo exists, because it was left behind.
...
@@ -585,8 +583,7 @@ When we rerun the buildout:
...
@@ -585,8 +583,7 @@ When we rerun the buildout:
An internal error occured due to a bug in either zc.buildout or in a
An internal error occured due to a bug in either zc.buildout or in a
recipe being used:
recipe being used:
Traceback (most recent call last):
Traceback (most recent call last):
...
... exists...
OSError: ... exists...
we get the same error, but we don't get the directory left behind:
we get the same error, but we don't get the directory left behind:
...
@@ -661,8 +658,7 @@ directories will be created:
...
@@ -661,8 +658,7 @@ directories will be created:
An internal error occured due to a bug in either zc.buildout or in a
An internal error occured due to a bug in either zc.buildout or in a
recipe being used:
recipe being used:
Traceback (most recent call last):
Traceback (most recent call last):
...
... exists...
OSError: ... exists...
>>> os.path.exists('foo')
>>> os.path.exists('foo')
False
False
...
@@ -1137,7 +1133,7 @@ extension that prints out the options.
...
@@ -1137,7 +1133,7 @@ extension that prints out the options.
... import sys
... import sys
... def ext(buildout):
... def ext(buildout):
... sys.stdout.write(str(
... sys.stdout.write(str(
... [part['option'] for name, part in
buildout.items(
)
... [part['option'] for name, part in
sorted(buildout.items()
)
... if name.startswith('part')])+'\\n')
... if name.startswith('part')])+'\\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