diff options
| author | Reinout van Rees <reinout@vanrees.org> | 2009-10-14 12:20:53 +0200 |
|---|---|---|
| committer | Reinout van Rees <reinout@vanrees.org> | 2009-10-14 12:20:53 +0200 |
| commit | 774fb7a0387f33b8dbcd0cbb46e7ea0c15049260 (patch) | |
| tree | 4d56e8bc62383d9177aa5b71c4c2ad9bd043f334 | |
| parent | 4390fda55407b0fec9cedecc119381a51df09534 (diff) | |
| download | python-setuptools-git-774fb7a0387f33b8dbcd0cbb46e7ea0c15049260.tar.gz | |
tiny tweak in docstring to not throw off emacs' syntax highligting
--HG--
branch : distribute
extra : rebase_source : b5719cdd1428dc109af18925312b773cbaa0e22b
| -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 |
