diff options
author | Jeix <devnull@localhost> | 2010-06-20 11:01:32 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-06-20 11:01:32 +0200 |
commit | d9c4deacd40bfc16aa8b0092e27241b6b215817a (patch) | |
tree | 3a6b13ed29facece3d7a1594042ee2e911ab063b /module/plugins/Plugin.py | |
parent | fix linklist.py (diff) | |
download | pyload-d9c4deacd40bfc16aa8b0092e27241b6b215817a.tar.xz |
New feature: XDCC Support
Works for links with the following schema: xdcc://.*?/.*?/#?\d+/? (regexp)
Example: xdcc://irc.server.net/botname/packid
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 10cb1d6a0..0e04a86e6 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -137,7 +137,7 @@ class Plugin(): self.ocr = captchaClass() def __call__(self): - return self.props['name'] + raise NotImplementedError def check_file(self, local_file): """ |