Commit b2e99f67 authored by Jason R. Coombs's avatar Jason R. Coombs

Shorten message and update changelog. Ref #1209.

parent 98f383ae
v38.1.0
-------
* #1208: Improve error message when failing to locate scripts
in egg-info metadata.
v38.0.0 v38.0.0
------- -------
......
...@@ -1514,8 +1514,9 @@ class NullProvider: ...@@ -1514,8 +1514,9 @@ class NullProvider:
script = 'scripts/' + script_name script = 'scripts/' + script_name
if not self.has_metadata(script): if not self.has_metadata(script):
raise ResolutionError( raise ResolutionError(
"No script named %r in 'scripts' directory of metadata " "Script {script!r} not found in metadata at {self.egg_info!r}"
"directory %r" % (script_name, self.egg_info)) .format(**locals()),
)
script_text = self.get_metadata(script).replace('\r\n', '\n') script_text = self.get_metadata(script).replace('\r\n', '\n')
script_text = script_text.replace('\r', '\n') script_text = script_text.replace('\r', '\n')
script_filename = self._fn(self.egg_info, script) script_filename = self._fn(self.egg_info, script)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment