diff options
65 files changed, 38 insertions, 70 deletions
diff --git a/pyload/plugin/account/NoPremiumPl.py b/pyload/plugin/account/NoPremiumPl.py index 0f5b16bb7..cbbc937b5 100644 --- a/pyload/plugin/account/NoPremiumPl.py +++ b/pyload/plugin/account/NoPremiumPl.py @@ -78,4 +78,4 @@ class NoPremiumPl(Account): def runAuthQuery(self): data = self._req.load(self._api_url, post=self.createAuthQuery()) - return data
\ No newline at end of file + return data diff --git a/pyload/plugin/account/RapideoPl.py b/pyload/plugin/account/RapideoPl.py index 043657074..dddb22781 100644 --- a/pyload/plugin/account/RapideoPl.py +++ b/pyload/plugin/account/RapideoPl.py @@ -77,4 +77,4 @@ class RapideoPl(Account): def runAuthQuery(self): data = self._req.load(self._api_url, post=self.createAuthQuery()) - return data
\ No newline at end of file + return data diff --git a/pyload/plugin/crypter/CrockoCom.py b/pyload/plugin/crypter/CrockoCom.py index 7b2350a30..71dadd8d5 100644 --- a/pyload/plugin/crypter/CrockoCom.py +++ b/pyload/plugin/crypter/CrockoCom.py @@ -19,4 +19,3 @@ class CrockoCom(SimpleCrypter): LINK_PATTERN = r'<td class="last"><a href="(.+?)">download</a>' - diff --git a/pyload/plugin/crypter/DepositfilesCom.py b/pyload/plugin/crypter/DepositfilesCom.py index ea0f6b878..d86f67426 100644 --- a/pyload/plugin/crypter/DepositfilesCom.py +++ b/pyload/plugin/crypter/DepositfilesCom.py @@ -19,4 +19,3 @@ class DepositfilesCom(SimpleCrypter): LINK_PATTERN = r'<div class="progressName".*?>\s*<a href="(.+?)" title=".+?" target="_blank">' - diff --git a/pyload/plugin/crypter/DevhostSt.py b/pyload/plugin/crypter/DevhostSt.py index 1746e03ae..4fb82e0ad 100644 --- a/pyload/plugin/crypter/DevhostSt.py +++ b/pyload/plugin/crypter/DevhostSt.py @@ -59,4 +59,4 @@ class DevhostSt(SimpleCrypter): except Exception: pass self.logDebug("File name: %s" % self.pyfile.name, - "File folder: %s" % self.pyfile.name)
\ No newline at end of file + "File folder: %s" % self.pyfile.name) diff --git a/pyload/plugin/crypter/FshareVn.py b/pyload/plugin/crypter/FshareVn.py index b9680e538..09adfee3e 100644 --- a/pyload/plugin/crypter/FshareVn.py +++ b/pyload/plugin/crypter/FshareVn.py @@ -19,4 +19,3 @@ class FshareVn(SimpleCrypter): LINK_PATTERN = r'<li class="w_80pc"><a href="(.+?)" target="_blank">' - diff --git a/pyload/plugin/crypter/MegaRapidCz.py b/pyload/plugin/crypter/MegaRapidCz.py index 641827320..fe490464a 100644 --- a/pyload/plugin/crypter/MegaRapidCz.py +++ b/pyload/plugin/crypter/MegaRapidCz.py @@ -19,4 +19,3 @@ class MegaRapidCz(SimpleCrypter): LINK_PATTERN = r'<td class="soubor".*?><a href="(.+?)">' - diff --git a/pyload/plugin/crypter/PastebinCom.py b/pyload/plugin/crypter/PastebinCom.py index 8a3be1fc3..034c859a1 100644 --- a/pyload/plugin/crypter/PastebinCom.py +++ b/pyload/plugin/crypter/PastebinCom.py @@ -20,4 +20,3 @@ class PastebinCom(SimpleCrypter): LINK_PATTERN = r'<div class="de\d+">(https?://[^ <]+)(?:[^<]*)</div>' NAME_PATTERN = r'<div class="paste_box_line1" title="(?P<N>.+?)">' - diff --git a/pyload/plugin/hoster/AlldebridCom.py b/pyload/plugin/hoster/AlldebridCom.py index c1b4a757f..9e1e3bc05 100644 --- a/pyload/plugin/hoster/AlldebridCom.py +++ b/pyload/plugin/hoster/AlldebridCom.py @@ -51,5 +51,3 @@ class AlldebridCom(MultiHoster): self.link = self.link.replace("http://", "https://") else: self.link = self.link.replace("https://", "http://") - - diff --git a/pyload/plugin/hoster/CatShareNet.py b/pyload/plugin/hoster/CatShareNet.py index 98b325465..fa3c13b3f 100644 --- a/pyload/plugin/hoster/CatShareNet.py +++ b/pyload/plugin/hoster/CatShareNet.py @@ -57,4 +57,3 @@ class CatShareNet(SimpleHoster): m = re.search(self.LINK_FREE_PATTERN, self.html) if m: self.link = m.group(1) - diff --git a/pyload/plugin/hoster/EdiskCz.py b/pyload/plugin/hoster/EdiskCz.py index c29bb655b..7f5f76b73 100644 --- a/pyload/plugin/hoster/EdiskCz.py +++ b/pyload/plugin/hoster/EdiskCz.py @@ -52,4 +52,3 @@ class EdiskCz(SimpleHoster): self.fail(_("Unexpected server response")) self.link = url - diff --git a/pyload/plugin/hoster/ExtabitCom.py b/pyload/plugin/hoster/ExtabitCom.py index b56be59f4..d0bcaa4e6 100644 --- a/pyload/plugin/hoster/ExtabitCom.py +++ b/pyload/plugin/hoster/ExtabitCom.py @@ -73,4 +73,3 @@ class ExtabitCom(SimpleHoster): self.error(_("LINK_FREE_PATTERN not found")) self.link = m.group(1) - diff --git a/pyload/plugin/hoster/FastixRu.py b/pyload/plugin/hoster/FastixRu.py index 8fa6bb386..12d0c51bb 100644 --- a/pyload/plugin/hoster/FastixRu.py +++ b/pyload/plugin/hoster/FastixRu.py @@ -41,5 +41,3 @@ class FastixRu(MultiHoster): self.offline() else: self.link = data['downloadlink'] - - diff --git a/pyload/plugin/hoster/GooIm.py b/pyload/plugin/hoster/GooIm.py index 9e4a894d5..8fd958660 100644 --- a/pyload/plugin/hoster/GooIm.py +++ b/pyload/plugin/hoster/GooIm.py @@ -33,4 +33,3 @@ class GooIm(SimpleHoster): def handleFree(self, pyfile): self.wait(10) self.link = pyfile.url - diff --git a/pyload/plugin/hoster/IfolderRu.py b/pyload/plugin/hoster/IfolderRu.py index 3298a556c..d16dc695c 100644 --- a/pyload/plugin/hoster/IfolderRu.py +++ b/pyload/plugin/hoster/IfolderRu.py @@ -61,4 +61,3 @@ class IfolderRu(SimpleHoster): self.fail(_("Invalid captcha")) self.link = re.search(self.LINK_FREE_PATTERN, self.html).group(1) - diff --git a/pyload/plugin/hoster/LuckyShareNet.py b/pyload/plugin/hoster/LuckyShareNet.py index 817e05ef7..e124c5b94 100644 --- a/pyload/plugin/hoster/LuckyShareNet.py +++ b/pyload/plugin/hoster/LuckyShareNet.py @@ -70,4 +70,3 @@ class LuckyShareNet(SimpleHoster): self.fail(_("No Download url retrieved/all captcha attempts failed")) self.link = json['link'] - diff --git a/pyload/plugin/hoster/MegaDebridEu.py b/pyload/plugin/hoster/MegaDebridEu.py index 57290e903..1c84223b8 100644 --- a/pyload/plugin/hoster/MegaDebridEu.py +++ b/pyload/plugin/hoster/MegaDebridEu.py @@ -56,5 +56,3 @@ class MegaDebridEu(MultiHoster): res = json_loads(jsonResponse) if res['response_code'] == "ok": self.link = res['debridLink'][1:-1] - - diff --git a/pyload/plugin/hoster/MegasharesCom.py b/pyload/plugin/hoster/MegasharesCom.py index 8cd6ca64e..184be2fd6 100644 --- a/pyload/plugin/hoster/MegasharesCom.py +++ b/pyload/plugin/hoster/MegasharesCom.py @@ -107,4 +107,3 @@ class MegasharesCom(SimpleHoster): self.link = m.group(1) self.logDebug("%s: %s" % (msg, self.link)) - diff --git a/pyload/plugin/hoster/MovReelCom.py b/pyload/plugin/hoster/MovReelCom.py index 0bbfbeeb6..fb942c59f 100644 --- a/pyload/plugin/hoster/MovReelCom.py +++ b/pyload/plugin/hoster/MovReelCom.py @@ -16,4 +16,3 @@ class MovReelCom(XFSHoster): LINK_PATTERN = r'<a href="(.+?)">Download Link' - diff --git a/pyload/plugin/hoster/NarodRu.py b/pyload/plugin/hoster/NarodRu.py index c6ca297fb..f3ff38379 100644 --- a/pyload/plugin/hoster/NarodRu.py +++ b/pyload/plugin/hoster/NarodRu.py @@ -60,4 +60,3 @@ class NarodRu(SimpleHoster): else: self.fail(_("No valid captcha code entered")) - diff --git a/pyload/plugin/hoster/NowDownloadSx.py b/pyload/plugin/hoster/NowDownloadSx.py index 89e95622a..967c14e81 100644 --- a/pyload/plugin/hoster/NowDownloadSx.py +++ b/pyload/plugin/hoster/NowDownloadSx.py @@ -60,4 +60,3 @@ class NowDownloadSx(SimpleHoster): self.error(_("Download link not found")) self.link = m.group(1) - diff --git a/pyload/plugin/hoster/NowVideoSx.py b/pyload/plugin/hoster/NowVideoSx.py index 6eb7a8adb..bfa186e60 100644 --- a/pyload/plugin/hoster/NowVideoSx.py +++ b/pyload/plugin/hoster/NowVideoSx.py @@ -40,4 +40,3 @@ class NowVideoSx(SimpleHoster): self.error(_("Free download link not found")) self.link = m.group(1) - diff --git a/pyload/plugin/hoster/OverLoadMe.py b/pyload/plugin/hoster/OverLoadMe.py index fd700afba..d4636f0f1 100644 --- a/pyload/plugin/hoster/OverLoadMe.py +++ b/pyload/plugin/hoster/OverLoadMe.py @@ -48,5 +48,3 @@ class OverLoadMe(MultiHoster): http_repl = ["http://", "https://"] self.link = data['downloadlink'].replace(*http_repl if self.getConfig('ssl') else http_repl[::-1]) - - diff --git a/pyload/plugin/hoster/RealdebridCom.py b/pyload/plugin/hoster/RealdebridCom.py index a97e3f841..5e2286974 100644 --- a/pyload/plugin/hoster/RealdebridCom.py +++ b/pyload/plugin/hoster/RealdebridCom.py @@ -53,5 +53,3 @@ class RealdebridCom(MultiHoster): self.link = self.link.replace("http://", "https://") else: self.link = self.link.replace("https://", "http://") - - diff --git a/pyload/plugin/hoster/RemixshareCom.py b/pyload/plugin/hoster/RemixshareCom.py index 97ff41b7d..6e376fd6d 100644 --- a/pyload/plugin/hoster/RemixshareCom.py +++ b/pyload/plugin/hoster/RemixshareCom.py @@ -53,4 +53,3 @@ class RemixshareCom(SimpleHoster): self.error(_("File token")) self.link = b.group(1) + "/zzz/" + c.group(1) - diff --git a/pyload/plugin/hoster/RgHostNet.py b/pyload/plugin/hoster/RgHostNet.py index 10f3497ed..14c92f9ab 100644 --- a/pyload/plugin/hoster/RgHostNet.py +++ b/pyload/plugin/hoster/RgHostNet.py @@ -23,4 +23,3 @@ class RgHostNet(SimpleHoster): OFFLINE_PATTERN = r'>(File is deleted|page not found)' LINK_FREE_PATTERN = r'<a href="(.+?)" class="btn large' - diff --git a/pyload/plugin/hoster/SendspaceCom.py b/pyload/plugin/hoster/SendspaceCom.py index 2f72e6c0b..740774313 100644 --- a/pyload/plugin/hoster/SendspaceCom.py +++ b/pyload/plugin/hoster/SendspaceCom.py @@ -55,4 +55,3 @@ class SendspaceCom(SimpleHoster): self.html = self.load(pyfile.url, post=params) else: self.fail(_("Download link not found")) - diff --git a/pyload/plugin/hoster/UlozTo.py b/pyload/plugin/hoster/UlozTo.py index 2e5be7e89..b2e31dccf 100644 --- a/pyload/plugin/hoster/UlozTo.py +++ b/pyload/plugin/hoster/UlozTo.py @@ -147,4 +147,3 @@ class UlozTo(SimpleHoster): self.fail(_("Server error, file not downloadable")) return super(UlozTo, self).checkFile(rules) - diff --git a/pyload/plugin/hoster/UnibytesCom.py b/pyload/plugin/hoster/UnibytesCom.py index adad0621f..2c383e383 100644 --- a/pyload/plugin/hoster/UnibytesCom.py +++ b/pyload/plugin/hoster/UnibytesCom.py @@ -67,4 +67,3 @@ class UnibytesCom(SimpleHoster): else: self.fail(_("No valid captcha code entered")) - diff --git a/pyload/plugin/hoster/WrzucTo.py b/pyload/plugin/hoster/WrzucTo.py index 9bb5c1439..5d17e3d4b 100644 --- a/pyload/plugin/hoster/WrzucTo.py +++ b/pyload/plugin/hoster/WrzucTo.py @@ -47,4 +47,3 @@ class WrzucTo(SimpleHoster): self.error(_("No download URL")) self.link = "http://%s.wrzuc.to/pobierz/%s" % (data['server_id'], data['download_link']) - diff --git a/pyload/webui/themes/Dark/tml/captcha.html b/pyload/webui/themes/Dark/tml/captcha.html index 731d97d11..3bfa6cbcf 100644 --- a/pyload/webui/themes/Dark/tml/captcha.html +++ b/pyload/webui/themes/Dark/tml/captcha.html @@ -39,4 +39,4 @@ </form> -</div>
\ No newline at end of file +</div> diff --git a/pyload/webui/themes/Dark/tml/downloads.html b/pyload/webui/themes/Dark/tml/downloads.html index c77744a92..f6e581c5b 100644 --- a/pyload/webui/themes/Dark/tml/downloads.html +++ b/pyload/webui/themes/Dark/tml/downloads.html @@ -26,4 +26,4 @@ </ul> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/folder.html b/pyload/webui/themes/Dark/tml/folder.html index d4977ea4b..21f3f4a03 100644 --- a/pyload/webui/themes/Dark/tml/folder.html +++ b/pyload/webui/themes/Dark/tml/folder.html @@ -12,4 +12,4 @@ </span> </span> <div style="display:none">{{ _("Folder is empty") }}</div> -</li>
\ No newline at end of file +</li> diff --git a/pyload/webui/themes/Dark/tml/home.html b/pyload/webui/themes/Dark/tml/home.html index 89050d681..6ce60de0b 100644 --- a/pyload/webui/themes/Dark/tml/home.html +++ b/pyload/webui/themes/Dark/tml/home.html @@ -260,4 +260,4 @@ var LinkEntry = new Class({ </tbody> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/info.html b/pyload/webui/themes/Dark/tml/info.html index ccacde3a1..62a8df571 100644 --- a/pyload/webui/themes/Dark/tml/info.html +++ b/pyload/webui/themes/Dark/tml/info.html @@ -73,4 +73,4 @@ </tr> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/logout.html b/pyload/webui/themes/Dark/tml/logout.html index e711b2a42..db7e9290e 100644 --- a/pyload/webui/themes/Dark/tml/logout.html +++ b/pyload/webui/themes/Dark/tml/logout.html @@ -6,4 +6,4 @@ {% block content %} <p><b>{{_("You were successfully logged out.")}}</b></p> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/logs.html b/pyload/webui/themes/Dark/tml/logs.html index 2ea2f3e1f..429306aae 100644 --- a/pyload/webui/themes/Dark/tml/logs.html +++ b/pyload/webui/themes/Dark/tml/logs.html @@ -38,4 +38,4 @@ </form> </div> <div style="clear: both; height: 10px;"> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/pathchooser.html b/pyload/webui/themes/Dark/tml/pathchooser.html index 787292737..6e58ab536 100644 --- a/pyload/webui/themes/Dark/tml/pathchooser.html +++ b/pyload/webui/themes/Dark/tml/pathchooser.html @@ -73,4 +73,4 @@ </table> </center> </body> -</html>
\ No newline at end of file +</html> diff --git a/pyload/webui/themes/Dark/tml/queue.html b/pyload/webui/themes/Dark/tml/queue.html index 3e3d5b61d..6e7cb6754 100644 --- a/pyload/webui/themes/Dark/tml/queue.html +++ b/pyload/webui/themes/Dark/tml/queue.html @@ -101,4 +101,4 @@ document.addEvent("domready", function(){ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/settings.html b/pyload/webui/themes/Dark/tml/settings.html index 8c98f74c6..7df0b2f23 100644 --- a/pyload/webui/themes/Dark/tml/settings.html +++ b/pyload/webui/themes/Dark/tml/settings.html @@ -201,4 +201,4 @@ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Dark/tml/settings_item.html b/pyload/webui/themes/Dark/tml/settings_item.html index e417e564c..af24d6eaf 100644 --- a/pyload/webui/themes/Dark/tml/settings_item.html +++ b/pyload/webui/themes/Dark/tml/settings_item.html @@ -45,4 +45,4 @@ </tr> {% endif %} {% endfor %} -</table>
\ No newline at end of file +</table> diff --git a/pyload/webui/themes/Dark/tml/window.html b/pyload/webui/themes/Dark/tml/window.html index 3f0e1f882..8f5efae36 100644 --- a/pyload/webui/themes/Dark/tml/window.html +++ b/pyload/webui/themes/Dark/tml/window.html @@ -49,4 +49,4 @@ </form> -</div>
\ No newline at end of file +</div> diff --git a/pyload/webui/themes/Flat/tml/captcha.html b/pyload/webui/themes/Flat/tml/captcha.html index 731d97d11..3bfa6cbcf 100644 --- a/pyload/webui/themes/Flat/tml/captcha.html +++ b/pyload/webui/themes/Flat/tml/captcha.html @@ -39,4 +39,4 @@ </form> -</div>
\ No newline at end of file +</div> diff --git a/pyload/webui/themes/Flat/tml/downloads.html b/pyload/webui/themes/Flat/tml/downloads.html index c77744a92..f6e581c5b 100644 --- a/pyload/webui/themes/Flat/tml/downloads.html +++ b/pyload/webui/themes/Flat/tml/downloads.html @@ -26,4 +26,4 @@ </ul> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/folder.html b/pyload/webui/themes/Flat/tml/folder.html index d4977ea4b..21f3f4a03 100644 --- a/pyload/webui/themes/Flat/tml/folder.html +++ b/pyload/webui/themes/Flat/tml/folder.html @@ -12,4 +12,4 @@ </span> </span> <div style="display:none">{{ _("Folder is empty") }}</div> -</li>
\ No newline at end of file +</li> diff --git a/pyload/webui/themes/Flat/tml/home.html b/pyload/webui/themes/Flat/tml/home.html index cbe8e2b8d..cc0bf330c 100644 --- a/pyload/webui/themes/Flat/tml/home.html +++ b/pyload/webui/themes/Flat/tml/home.html @@ -263,4 +263,4 @@ var LinkEntry = new Class({ </tbody> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/info.html b/pyload/webui/themes/Flat/tml/info.html index be5eed65e..57e688e09 100644 --- a/pyload/webui/themes/Flat/tml/info.html +++ b/pyload/webui/themes/Flat/tml/info.html @@ -78,4 +78,4 @@ </tr> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/logout.html b/pyload/webui/themes/Flat/tml/logout.html index e711b2a42..db7e9290e 100644 --- a/pyload/webui/themes/Flat/tml/logout.html +++ b/pyload/webui/themes/Flat/tml/logout.html @@ -6,4 +6,4 @@ {% block content %} <p><b>{{_("You were successfully logged out.")}}</b></p> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/logs.html b/pyload/webui/themes/Flat/tml/logs.html index 2ea2f3e1f..429306aae 100644 --- a/pyload/webui/themes/Flat/tml/logs.html +++ b/pyload/webui/themes/Flat/tml/logs.html @@ -38,4 +38,4 @@ </form> </div> <div style="clear: both; height: 10px;"> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/pathchooser.html b/pyload/webui/themes/Flat/tml/pathchooser.html index 787292737..6e58ab536 100644 --- a/pyload/webui/themes/Flat/tml/pathchooser.html +++ b/pyload/webui/themes/Flat/tml/pathchooser.html @@ -73,4 +73,4 @@ </table> </center> </body> -</html>
\ No newline at end of file +</html> diff --git a/pyload/webui/themes/Flat/tml/queue.html b/pyload/webui/themes/Flat/tml/queue.html index 27160309a..8038a085b 100644 --- a/pyload/webui/themes/Flat/tml/queue.html +++ b/pyload/webui/themes/Flat/tml/queue.html @@ -101,4 +101,4 @@ document.addEvent("domready", function(){ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/settings.html b/pyload/webui/themes/Flat/tml/settings.html index 8482e33e8..47f69b188 100644 --- a/pyload/webui/themes/Flat/tml/settings.html +++ b/pyload/webui/themes/Flat/tml/settings.html @@ -201,4 +201,4 @@ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Flat/tml/settings_item.html b/pyload/webui/themes/Flat/tml/settings_item.html index 813383343..28de1a1a9 100644 --- a/pyload/webui/themes/Flat/tml/settings_item.html +++ b/pyload/webui/themes/Flat/tml/settings_item.html @@ -45,4 +45,4 @@ </tr> {% endif %} {% endfor %} -</table>
\ No newline at end of file +</table> diff --git a/pyload/webui/themes/Flat/tml/window.html b/pyload/webui/themes/Flat/tml/window.html index 17b199b45..023441f69 100644 --- a/pyload/webui/themes/Flat/tml/window.html +++ b/pyload/webui/themes/Flat/tml/window.html @@ -43,4 +43,4 @@ </form> -</div>
\ No newline at end of file +</div> diff --git a/pyload/webui/themes/Next/tml/captcha.html b/pyload/webui/themes/Next/tml/captcha.html index 9602278b6..2b449aa86 100644 --- a/pyload/webui/themes/Next/tml/captcha.html +++ b/pyload/webui/themes/Next/tml/captcha.html @@ -37,4 +37,4 @@ </form> -</div>
\ No newline at end of file +</div> diff --git a/pyload/webui/themes/Next/tml/downloads.html b/pyload/webui/themes/Next/tml/downloads.html index 295fbf670..0643ed2f8 100644 --- a/pyload/webui/themes/Next/tml/downloads.html +++ b/pyload/webui/themes/Next/tml/downloads.html @@ -26,4 +26,4 @@ </ul> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/folder.html b/pyload/webui/themes/Next/tml/folder.html index 4453e8c87..d01fc4972 100644 --- a/pyload/webui/themes/Next/tml/folder.html +++ b/pyload/webui/themes/Next/tml/folder.html @@ -12,4 +12,4 @@ </span> </span> <div style="display:none">{{ _("Folder is empty") }}</div> -</li>
\ No newline at end of file +</li> diff --git a/pyload/webui/themes/Next/tml/info.html b/pyload/webui/themes/Next/tml/info.html index 053ec8210..f6c3a91e1 100644 --- a/pyload/webui/themes/Next/tml/info.html +++ b/pyload/webui/themes/Next/tml/info.html @@ -78,4 +78,4 @@ </tr> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/logout.html b/pyload/webui/themes/Next/tml/logout.html index e711b2a42..db7e9290e 100644 --- a/pyload/webui/themes/Next/tml/logout.html +++ b/pyload/webui/themes/Next/tml/logout.html @@ -6,4 +6,4 @@ {% block content %} <p><b>{{_("You were successfully logged out.")}}</b></p> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/logs.html b/pyload/webui/themes/Next/tml/logs.html index ddbe12980..8e995c465 100644 --- a/pyload/webui/themes/Next/tml/logs.html +++ b/pyload/webui/themes/Next/tml/logs.html @@ -38,4 +38,4 @@ </form> </div> <div style="clear: both; height: 10px;"> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/pathchooser.html b/pyload/webui/themes/Next/tml/pathchooser.html index 471ed868a..9f61d282d 100644 --- a/pyload/webui/themes/Next/tml/pathchooser.html +++ b/pyload/webui/themes/Next/tml/pathchooser.html @@ -73,4 +73,4 @@ </table> </center> </body> -</html>
\ No newline at end of file +</html> diff --git a/pyload/webui/themes/Next/tml/queue.html b/pyload/webui/themes/Next/tml/queue.html index 265cdfbe1..0e343a754 100644 --- a/pyload/webui/themes/Next/tml/queue.html +++ b/pyload/webui/themes/Next/tml/queue.html @@ -106,4 +106,4 @@ document.addEvent("domready", function(){ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/settings.html b/pyload/webui/themes/Next/tml/settings.html index 805340057..5acab4f1f 100644 --- a/pyload/webui/themes/Next/tml/settings.html +++ b/pyload/webui/themes/Next/tml/settings.html @@ -209,4 +209,4 @@ </form> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/pyload/webui/themes/Next/tml/settings_item.html b/pyload/webui/themes/Next/tml/settings_item.html index 048ff897b..4d07eddb4 100644 --- a/pyload/webui/themes/Next/tml/settings_item.html +++ b/pyload/webui/themes/Next/tml/settings_item.html @@ -47,4 +47,4 @@ {% endif %} {% endfor %} -</table>
\ No newline at end of file +</table> diff --git a/pyload/webui/themes/Next/tml/window.html b/pyload/webui/themes/Next/tml/window.html index 290d40be6..87c78f96c 100644 --- a/pyload/webui/themes/Next/tml/window.html +++ b/pyload/webui/themes/Next/tml/window.html @@ -43,4 +43,4 @@ -</div>
\ No newline at end of file +</div> |