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
b153d68b
Commit
b153d68b
authored
Apr 16, 2010
by
Godefroid Chapelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wording for the undefined scripts name warning.
parent
adb685ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+2
-2
zc.recipe.egg_/src/zc/recipe/egg/README.txt
zc.recipe.egg_/src/zc/recipe/egg/README.txt
+2
-2
No files found.
src/zc/buildout/easy_install.py
View file @
b153d68b
...
...
@@ -966,10 +966,10 @@ def scripts(reqs, working_set, executable, dest,
if
name
not
in
entry_points_names
:
if
name
==
target
:
logger
.
warning
(
"Could not generate script '%s' as it is not "
"defined in the
target egg
."
,
name
)
"defined in the
egg entry points
."
,
name
)
else
:
logger
.
warning
(
"Could not generate script '%s' as script "
"'%s' is not defined in the
target egg
."
,
name
,
target
)
"'%s' is not defined in the
egg entry points
."
,
name
,
target
)
if
interpreter
:
sname
=
os
.
path
.
join
(
dest
,
interpreter
)
...
...
zc.recipe.egg_/src/zc/recipe/egg/README.txt
View file @
b153d68b
...
...
@@ -361,7 +361,7 @@ If a wrong script name is provided, buildout tells about it:
>>> print system(buildout),
Uninstalling demo.
Installing demo.
Could not generate script 'undefined' as it is not defined in the
target egg
.
Could not generate script 'undefined' as it is not defined in the
egg entry points
.
>>> ls(sample_buildout, 'bin')
- buildout
...
...
@@ -381,7 +381,7 @@ If a wrong script name is provided, buildout tells about it:
>>> print system(buildout),
Uninstalling demo.
Installing demo.
Could not generate script 'foo' as script 'undefined' is not defined in the
target egg
.
Could not generate script 'foo' as script 'undefined' is not defined in the
egg entry points
.
>>> ls(sample_buildout, 'bin')
- buildout
...
...
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