aboutsummaryrefslogtreecommitdiff
path: root/src/runserver.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 21:24:04 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 21:24:04 +0200
commitec30925914fba06ba73a748d745c1a7356f2e53d (patch)
tree31063d7fff39852b16dc70d529eddb8c0dd737e4 /src/runserver.py
parentFixed conflicts. (diff)
downloadnewspipe-ec30925914fba06ba73a748d745c1a7356f2e53d.tar.gz
newspipe-ec30925914fba06ba73a748d745c1a7356f2e53d.tar.bz2
newspipe-ec30925914fba06ba73a748d745c1a7356f2e53d.zip
Improved display of bookmark's tags. And fixed some remainings merge related bugs.
Diffstat (limited to 'src/runserver.py')
-rwxr-xr-xsrc/runserver.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runserver.py b/src/runserver.py
index 1099b483..ff4fe444 100755
--- a/src/runserver.py
+++ b/src/runserver.py
@@ -56,6 +56,8 @@ with application.app_context():
application.register_blueprint(views.admin_bp)
application.register_blueprint(views.users_bp)
application.register_blueprint(views.user_bp)
+ application.register_blueprint(views.bookmarks_bp)
+ application.register_blueprint(views.bookmark_bp)
if __name__ == '__main__':
bgstack15