diff options
author | necoro <> | 2007-08-06 01:05:42 +0000 |
---|---|---|
committer | necoro <> | 2007-08-06 01:05:42 +0000 |
commit | 02652967805e1b30be1f55b73cfc50fc2ac4bbe6 (patch) | |
tree | d92c242797e0e36095a81af43a1a277a28c69715 /portato/backend | |
parent | 27fcaa18fbcca7ee1292c299239f0cb047412beb (diff) | |
download | portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.tar.gz portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.tar.bz2 portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.zip |
small fixes
Diffstat (limited to 'portato/backend')
-rw-r--r-- | portato/backend/portage/system.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py index bf1b821..c40473e 100644 --- a/portato/backend/portage/system.py +++ b/portato/backend/portage/system.py @@ -101,7 +101,7 @@ class PortageSystem (SystemInterface): if name != None: if isinstance(name, str): - return lambda x: re.match(".*"+name+".*",x) + return lambda x: re.match(".*"+name+".*",x, re.I) else: # assume regular expression return lambda x: name.match(x) else: |