diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-26 23:33:55 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-26 23:33:55 +0100 |
commit | 0541a50bae77fca45c9b6d633b39595b4d933103 (patch) | |
tree | 61ec45609ef6168b7c69fc39a66916acc9fa466b /module/PluginManager.py | |
parent | fix ssl deactivation for server selector (diff) | |
download | pyload-0541a50bae77fca45c9b6d633b39595b4d933103.tar.xz |
little fixes, added pyload logo as svg
Diffstat (limited to 'module/PluginManager.py')
-rw-r--r-- | module/PluginManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/PluginManager.py b/module/PluginManager.py index d74123040..f5a3fe31d 100644 --- a/module/PluginManager.py +++ b/module/PluginManager.py @@ -177,7 +177,7 @@ class PluginManager: if "pattern" in attrs and attrs["pattern"]: try: - plugin_re = re.compile(attrs["pattern"]) + plugin_re = re.compile(attrs["pattern"], re.I) except: self.logDebug(folder, name, "Invalid regexp pattern '%s'" % attrs["pattern"]) plugin_re = self.NO_MATCH |