From fb1b7680cee8b4e751b29f6d46a6fcedb51e4e31 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 2 Jan 2015 15:31:47 -0600 Subject: Fix regression in entry-point name parsing See #323 for more details. --- pkg_resources/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg_resources/__init__.py') diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index a0b354ff..ac3807d8 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -2280,7 +2280,7 @@ class EntryPoint(object): pattern = re.compile( r'\s*' - r'(?P[\w. -]+?)\s*' + r'(?P[+\w. -]+?)\s*' r'=\s*' r'(?P[\w.]+)\s*' r'(:\s*(?P[\w.]+))?\s*' -- cgit v1.2.1