summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-05-16 10:06:29 +0200
committerGuido Günther <agx@sigxcpu.org>2011-05-16 10:06:29 +0200
commitf7362942da95c352cb3cd4c3089e00be22f44a79 (patch)
tree0e5d33fc9a151b1f2491c0f67afaf5446c19aa05
parent5547c08bdd133f96e523a60a522d01fb10828e8c (diff)
Fix regexv0.0.2
the current one only matched one letter/number so names.
-rwxr-xr-xwhatmaps2
1 files changed, 1 insertions, 1 deletions
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(\.[^/])*$)')
+ _so_regex = re.compile(r'(?P<so>/.*\.so(\.[^/]*)$)')
_list_contents = None
def __init__(self, name):