diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:24:27 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:24:27 +0200 |
commit | 5fed2b0180b95eed9ee82f82dff1a5bf8c66c2f5 (patch) | |
tree | cd3f31f108d529dcacc30caf2712fa395297cb08 /module/plugins/captcha | |
parent | Remove shebang #!/usr/bin/env python (diff) | |
download | pyload-5fed2b0180b95eed9ee82f82dff1a5bf8c66c2f5.tar.xz |
Fix header # -*- coding: utf-8 -*-
Merges vuolter/pyload@aa7b3f9
Diffstat (limited to 'module/plugins/captcha')
-rw-r--r-- | module/plugins/captcha/GigasizeCom.py | 1 | ||||
-rw-r--r-- | module/plugins/captcha/LinksaveIn.py | 2 | ||||
-rw-r--r-- | module/plugins/captcha/NetloadIn.py | 2 | ||||
-rw-r--r-- | module/plugins/captcha/ShareonlineBiz.py | 2 | ||||
-rw-r--r-- | module/plugins/captcha/captcha.py | 2 |
5 files changed, 7 insertions, 2 deletions
diff --git a/module/plugins/captcha/GigasizeCom.py b/module/plugins/captcha/GigasizeCom.py index adf97c080..2d0837257 100644 --- a/module/plugins/captcha/GigasizeCom.py +++ b/module/plugins/captcha/GigasizeCom.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- + from captcha import OCR class GigasizeCom(OCR): diff --git a/module/plugins/captcha/LinksaveIn.py b/module/plugins/captcha/LinksaveIn.py index df885044a..8ce26fbac 100644 --- a/module/plugins/captcha/LinksaveIn.py +++ b/module/plugins/captcha/LinksaveIn.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from captcha import OCR import Image from os import sep diff --git a/module/plugins/captcha/NetloadIn.py b/module/plugins/captcha/NetloadIn.py index b7ad9d310..733fe99db 100644 --- a/module/plugins/captcha/NetloadIn.py +++ b/module/plugins/captcha/NetloadIn.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from captcha import OCR class NetloadIn(OCR): diff --git a/module/plugins/captcha/ShareonlineBiz.py b/module/plugins/captcha/ShareonlineBiz.py index 35aa4a5d2..0c87b636d 100644 --- a/module/plugins/captcha/ShareonlineBiz.py +++ b/module/plugins/captcha/ShareonlineBiz.py @@ -1,5 +1,5 @@ - # -*- coding: utf-8 -*- + # #Copyright (C) 2009 kingzero, RaNaN # diff --git a/module/plugins/captcha/captcha.py b/module/plugins/captcha/captcha.py index 2427a1f72..7e4dec697 100644 --- a/module/plugins/captcha/captcha.py +++ b/module/plugins/captcha/captcha.py @@ -1,5 +1,5 @@ - # -*- coding: utf-8 -*- + # #Copyright (C) 2009 kingzero, RaNaN # |