diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
commit | 0e1ef9bc01579328e17e79416fa3c1c7b77adcc8 (patch) | |
tree | 7254ea66d7efee78ececda3ab3eeeb6548b22bca /module/plugins/hoster/Ftp.py | |
parent | Move base plugins to internal folder (diff) | |
download | pyload-0e1ef9bc01579328e17e79416fa3c1c7b77adcc8.tar.xz |
Update everything
Diffstat (limited to 'module/plugins/hoster/Ftp.py')
-rw-r--r-- | module/plugins/hoster/Ftp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/Ftp.py b/module/plugins/hoster/Ftp.py index 295955cbe..adfb279e4 100644 --- a/module/plugins/hoster/Ftp.py +++ b/module/plugins/hoster/Ftp.py @@ -5,13 +5,13 @@ import re import urllib import urlparse -from module.plugins.Hoster import Hoster +from module.plugins.internal.Hoster import Hoster class Ftp(Hoster): __name__ = "Ftp" __type__ = "hoster" - __version__ = "0.52" + __version__ = "0.53" __pattern__ = r'(?:ftps?|sftp)://([\w.-]+(:[\w.-]+)?@)?[\w.-]+(:\d+)?/.+' |