[Checkins] SVN: zc.buildout/trunk/ Wording for the undefined scripts name warning.

Godefroid Chapelle gotcha at bubblenet.be
Fri Apr 16 05:11:04 EDT 2010


Log message for revision 110954:
  Wording for the undefined scripts name warning.

Changed:
  U   zc.buildout/trunk/src/zc/buildout/easy_install.py
  U   zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt

-=-
Modified: zc.buildout/trunk/src/zc/buildout/easy_install.py
===================================================================
--- zc.buildout/trunk/src/zc/buildout/easy_install.py	2010-04-16 09:10:55 UTC (rev 110953)
+++ zc.buildout/trunk/src/zc/buildout/easy_install.py	2010-04-16 09:11:03 UTC (rev 110954)
@@ -966,10 +966,10 @@
             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)

Modified: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt	2010-04-16 09:10:55 UTC (rev 110953)
+++ zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/README.txt	2010-04-16 09:11:03 UTC (rev 110954)
@@ -361,7 +361,7 @@
     >>> 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 @@
     >>> 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



More information about the checkins mailing list