diff options
author | 2012-08-17 16:25:49 +0200 | |
---|---|---|
committer | 2012-08-17 16:25:49 +0200 | |
commit | 89e803a1e8364a3d32dcdb2ff445959723b974b1 (patch) | |
tree | a167912b0c1b5337532c7a44c3874cc753acb680 /module/web/pyload_app.py | |
parent | renamed default_mobile to mobile (diff) | |
download | pyload-89e803a1e8364a3d32dcdb2ff445959723b974b1.tar.xz |
completed renaming
Diffstat (limited to 'module/web/pyload_app.py')
-rw-r--r-- | module/web/pyload_app.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py index 92ad88944..7be4975a7 100644 --- a/module/web/pyload_app.py +++ b/module/web/pyload_app.py @@ -131,12 +131,12 @@ def logout(): @route("/queue") @login_required() -def index(api): +def queue(api): return render_to_response("queue.html", proc=[pre_processor]) @route("/settings") @login_required() -def index(api): +def settings(api): return render_to_response("settings.html", proc=[pre_processor]) @route("/") |