summaryrefslogtreecommitdiffstats
path: root/module/web/api_app.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 20:12:20 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 20:12:20 +0200
commit98a9f43b5585efbe6b69622040a602089c93f58a (patch)
treebf538c28d15dc7d347fe0545528260db6637513a /module/web/api_app.py
parentMerged in mineo/pyload (pull request #1) (diff)
downloadpyload-98a9f43b5585efbe6b69622040a602089c93f58a.tar.xz
closed #400
Diffstat (limited to 'module/web/api_app.py')
-rw-r--r--module/web/api_app.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/web/api_app.py b/module/web/api_app.py
index 25b9f7d3d..db735a5b9 100644
--- a/module/web/api_app.py
+++ b/module/web/api_app.py
@@ -64,6 +64,7 @@ def callApi(func, *args, **kwargs):
result = getattr(PYLOAD, func)(*[literal_eval(x) for x in args],
**dict([(x, literal_eval(y)) for x, y in kwargs.iteritems()]))
+ # null is invalid json response
if result is None: result = True
return json.dumps(result, cls=TBaseEncoder)