From f7362942da95c352cb3cd4c3089e00be22f44a79 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 16 May 2011 10:06:29 +0200 Subject: Fix regex the current one only matched one letter/number so names. --- whatmaps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whatmaps b/whatmaps index f350915..6991088 100755 --- a/whatmaps +++ b/whatmaps @@ -142,7 +142,7 @@ class Pkg(object): type = None services = None shared_objects = None - _so_regex = re.compile(r'(?P/.*\.so(\.[^/])*$)') + _so_regex = re.compile(r'(?P/.*\.so(\.[^/]*)$)') _list_contents = None def __init__(self, name): -- cgit v1.2.3