aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/youtube.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-02-16 16:56:46 -0800
committerJames Taylor <user234683@users.noreply.github.com>2019-02-16 16:56:46 -0800
commit24642455d0dc5841ddec99f456598c4f763c1e8a (patch)
tree74859d4200dddc3c4c011ead4aefb12e252aabb5 /youtube/youtube.py
parent4a54c4fe301f37ae63e98defe8240a5d526361c6 (diff)
downloadyt-local-24642455d0dc5841ddec99f456598c4f763c1e8a.tar.lz
yt-local-24642455d0dc5841ddec99f456598c4f763c1e8a.tar.xz
yt-local-24642455d0dc5841ddec99f456598c4f763c1e8a.zip
subscriptions page
Diffstat (limited to 'youtube/youtube.py')
-rw-r--r--youtube/youtube.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube/youtube.py b/youtube/youtube.py
index b6b12fb..ad73a6e 100644
--- a/youtube/youtube.py
+++ b/youtube/youtube.py
@@ -1,7 +1,7 @@
import mimetypes
import urllib.parse
import os
-from youtube import local_playlist, watch, search, playlist, channel, comments, common, post_comment, accounts
+from youtube import local_playlist, watch, search, playlist, channel, comments, common, post_comment, accounts, subscriptions
import settings
YOUTUBE_FILES = (
"/shared.css",
@@ -24,6 +24,8 @@ get_handlers = {
'post_comment': post_comment.get_post_comment_page,
'delete_comment': post_comment.get_delete_comment_page,
'login': accounts.get_account_login_page,
+
+ 'subscriptions': subscriptions.get_subscriptions_page,
}
post_handlers = {
'edit_playlist': local_playlist.edit_playlist,