Commit f1011074 authored by Jim Fulton's avatar Jim Fulton

fix non_found renormalizer to accommodate packages with dots in their names.

parent cddd5c0f
......@@ -503,7 +503,7 @@ normalize_exception_type_for_python_2_and_3 = (
re.compile(r'^(\w+\.)*([A-Z][A-Za-z0-9]+Error: )'),
'\2')
not_found = (re.compile(r'Not found: [^\n]+/\w+/\r?\n'), '')
not_found = (re.compile(r'Not found: [^\n]+/(\w|\.)+/\r?\n'), '')
ignore_not_upgrading = (
re.compile(
......
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