From f8cf65d4271254dd89662cb6190adc5b426c6d2b Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Tue, 12 May 2015 02:44:03 +0200 Subject: 'from time' -> 'import time' and so on... (2) --- pyload/plugin/hook/ExpertDecoders.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pyload/plugin/hook/ExpertDecoders.py') diff --git a/pyload/plugin/hook/ExpertDecoders.py b/pyload/plugin/hook/ExpertDecoders.py index 0727c0407..2e05e7386 100644 --- a/pyload/plugin/hook/ExpertDecoders.py +++ b/pyload/plugin/hook/ExpertDecoders.py @@ -2,10 +2,10 @@ from __future__ import with_statement -import pycurl +import base64 import uuid -from base64 import b64encode +import pycurl from pyload.network.HTTPRequest import BadHeader from pyload.network.RequestFactory import getURL, getRequest @@ -62,7 +62,7 @@ class ExpertDecoders(Hook): result = req.load(self.API_URL, post={'action' : "upload", 'key' : self.getConfig('passkey'), - 'file' : b64encode(data), + 'file' : base64.b64encode(data), 'gen_task_id': ticket}) finally: req.close() -- cgit v1.2.3