summaryrefslogtreecommitdiffstats
path: root/module/web/cnl_app.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-03-13 18:48:01 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-03-13 18:48:01 +0100
commitb0ab80452769af1482e679db93abd407c608a7f6 (patch)
tree64ea3210a847b810e575cc28649b2f519671e002 /module/web/cnl_app.py
parentfixed login issue (diff)
downloadpyload-b0ab80452769af1482e679db93abd407c608a7f6.tar.xz
cnl fix
Diffstat (limited to 'module/web/cnl_app.py')
-rw-r--r--module/web/cnl_app.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/web/cnl_app.py b/module/web/cnl_app.py
index 4c8b3ed4c..f46893388 100644
--- a/module/web/cnl_app.py
+++ b/module/web/cnl_app.py
@@ -31,7 +31,7 @@ def local_check(function):
@route("/flash", method="POST")
@local_check
def flash(id="0"):
- return "JDownloader"
+ return "JDownloader\r\n"
@route("/flash/add", method="POST")
@local_check
@@ -60,7 +60,7 @@ def addcrypted():
except:
return HTTPError()
else:
- return "success"
+ return "success\r\n"
@route("/flash/addcrypted2", method="POST")
@local_check
@@ -106,7 +106,7 @@ def addcrypted2():
except:
return "failed can't add"
else:
- return "success"
+ return "success\r\n"
@route("/flashgot", method="POST")
@local_check