Skip to content
Snippets Groups Projects
Commit ee517d71 authored by Scott Kitterman's avatar Scott Kitterman
Browse files

* Fix error in pydist package relationship regex (Closes: #735163)

  - Thanks to Rafael Laboissiere for the patch
parent 30f06a63
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,10 @@ python-defaults (2.7.7-1) UNRELEASED; urgency=medium
* Fix typo in policy doc re: wheel package exception list.
* Add myself to Uploaders.
[ Scott Kitterman ]
* Fix error in pydist package relationship regex (Closes: #735163)
- Thanks to Rafael Laboissiere for the patch
-- Matthias Klose <doko@debian.org> Mon, 02 Jun 2014 19:54:25 +0200
python-defaults (2.7.6-2) unstable; urgency=medium
......
......@@ -114,7 +114,7 @@ def guess_dependency(req, version=None):
version = getver(version)
# some upstreams have weird ideas for distribution name...
name, rest = re.compile('([^><= \[]+)(.*)').match(req).groups()
name, rest = re.compile('([^!><= \[]+)(.*)').match(req).groups()
req = safe_name(name) + rest
data = load()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment