diff options
author | mkaay <mkaay@mkaay.de> | 2011-12-08 18:40:55 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-12-08 18:40:55 +0100 |
commit | 12e0357c2fb7cf9aabb4744a8fed49426c21ba68 (patch) | |
tree | e1c9c3ffbe01aa5a346a3f1cb8dd5b894620f1cd /module/web | |
parent | fixed deprecation warnings (diff) | |
download | pyload-12e0357c2fb7cf9aabb4744a8fed49426c21ba68.tar.xz |
fixed order consistence, fixed typo in json_app
Diffstat (limited to 'module/web')
-rw-r--r-- | module/web/json_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/json_app.py b/module/web/json_app.py index 2d0f56357..f3626405c 100644 --- a/module/web/json_app.py +++ b/module/web/json_app.py @@ -186,7 +186,7 @@ def add_package(): PYLOAD.setPackageData(pack, data) -@route("/json/move_package/<dest:int/<id:int>") +@route("/json/move_package/<dest:int>/<id:int>") @login_required('MODIFY') def move_package(dest, id): try: |