aboutsummaryrefslogtreecommitdiff
path: root/app/views/packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/packages.py')
-rw-r--r--app/views/packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/packages.py b/app/views/packages.py
index 6428339..1f9d570 100644
--- a/app/views/packages.py
+++ b/app/views/packages.py
@@ -33,7 +33,8 @@ def doPackageList(type):
return jsonify(pkgs)
else:
tags = Tag.query.all()
- return render_template("packages/list.html", title=title, packages=query.all(), query=search, tags=tags, type=None if type is None else type.toName())
+ return render_template("packages/list.html", title=title, packages=query.all(), \
+ query=search, tags=tags, type=None if type is None else type.toName())
@app.route("/packages/")