diff options
| author | 2015-08-19 00:42:11 +0200 | |
|---|---|---|
| committer | 2015-08-19 00:42:11 +0200 | |
| commit | d1aa2d4d2eb4ed1b01943645401d9818eb46b712 (patch) | |
| tree | 742320662eec2b975b2a3000c3d0ef53b232c0ea /module/plugins | |
| parent | Merge pull request #1723 from Pavion/patch-1 (diff) | |
| download | pyload-d1aa2d4d2eb4ed1b01943645401d9818eb46b712.tar.xz | |
OneFichierCom premium detection fixed
Diffstat (limited to 'module/plugins')
| -rw-r--r-- | module/plugins/accounts/OneFichierCom.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/accounts/OneFichierCom.py b/module/plugins/accounts/OneFichierCom.py index 3a0131a3f..e2e84feef 100644 --- a/module/plugins/accounts/OneFichierCom.py +++ b/module/plugins/accounts/OneFichierCom.py @@ -10,7 +10,7 @@ from module.plugins.internal.Account import Account  class OneFichierCom(Account):      __name__    = "OneFichierCom"      __type__    = "account" -    __version__ = "0.14" +    __version__ = "0.15"      __status__  = "testing"      __description__ = """1fichier.com account plugin""" @@ -19,7 +19,7 @@ class OneFichierCom(Account):                         ("Walter Purcaro", "vuolter@gmail.com")] -    VALID_UNTIL_PATTERN = r'Your Premium Status will end the (\d+/\d+/\d+)' +    VALID_UNTIL_PATTERN = r'Your subscription will end the (\d+-\d+-\d+)'      def parse_info(self, user, password, data, req): @@ -35,7 +35,7 @@ class OneFichierCom(Account):              self.log_debug("Expire date: " + expiredate)              try: -                validuntil = time.mktime(time.strptime(expiredate, "%d/%m/%Y")) +                validuntil = time.mktime(time.strptime(expiredate, "%Y-%m-%d"))              except Exception, e:                  self.log_error(e)              else: | 
