From e401472c292205cd0ca4c286d8a3ec42982783ed Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 6 Aug 2010 17:28:41 +0200 Subject: container upload fix --- module/plugins/Plugin.py | 3 +++ module/web/ajax/views.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'module') diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 549caba22..516a3b772 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -195,6 +195,9 @@ class Plugin(object): Ocr = self.core.pluginManager.getCaptchaPlugin(self.__name__) if Ocr: sleep(randint(3000, 5000) / 1000.0) + + if self.pyfile.abort: raise Abort + ocr = Ocr() result = ocr.get_captcha(temp.name) else: diff --git a/module/web/ajax/views.py b/module/web/ajax/views.py index b1fe2f676..588881eea 100644 --- a/module/web/ajax/views.py +++ b/module/web/ajax/views.py @@ -62,7 +62,7 @@ def add_package(request): if name == None or name == "": name = f.name - fpath = join(settings.DL_ROOT, f.name) + fpath = join(settings.PYLOAD.get_conf_val("general","download_folder"), "tmp_"+ f.name) destination = open(fpath, 'wb') for chunk in f.chunks(): destination.write(chunk) -- cgit v1.2.3