Remove old method (moved in SubredditController)

This commit is contained in:
Théo Piboubès
2015-08-10 18:17:51 +02:00
parent 248a87a7e5
commit a02322d5fe

View File

@@ -412,22 +412,6 @@ class BasePage(object):
s.catch = False s.catch = False
self.refresh_content() self.refresh_content()
@BaseController.register('s')
def get_subscriptions(self):
"""
Displays subscribed subreddits
"""
if not self.reddit.is_logged_in():
show_notification(self.stdscr, ['Not logged in'])
return
data = self.content.get(self.nav.absolute_index)
with self.safe_call as s:
subscriptions = SubscriptionPage(self.stdscr, self.reddit)
subscriptions.loop()
self.refresh_content()
@BaseController.register('i') @BaseController.register('i')
def get_inbox(self): def get_inbox(self):
""" """