diff options
| -rw-r--r-- | distribute.egg-info/entry_points.txt | 2 | ||||
| -rw-r--r-- | pkg_resources.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt index f4b74da0..0aaa28c0 100644 --- a/distribute.egg-info/entry_points.txt +++ b/distribute.egg-info/entry_points.txt @@ -32,7 +32,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete [console_scripts] easy_install = setuptools.command.easy_install:main -easy_install-2.6 = setuptools.command.easy_install:main +easy_install-2.5 = setuptools.command.easy_install:main [setuptools.file_finders] svn_cvs = setuptools.command.sdist:_default_revctrl diff --git a/pkg_resources.py b/pkg_resources.py index 2712e9f1..fec60626 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -540,7 +540,7 @@ class WorkingSet(object): Environment(plugin_dirlist) ) map(working_set.add, distributions) # add plugins+libs to sys.path - print "Couldn't load", errors # display errors + print 'Could not load', errors # display errors The `plugin_env` should be an ``Environment`` instance that contains only distributions that are in the project's "plugin directory" or |
