From 246ae47c80e8f793ea784034362b5c2397e20541 Mon Sep 17 00:00:00 2001 From: Laszlo Zeke Date: Mon, 17 Jun 2019 20:12:00 +0200 Subject: [PATCH] Allow down to 2 char IDs --- TwitchRSS/twitchrss.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TwitchRSS/twitchrss.py b/TwitchRSS/twitchrss.py index bf53295..c424391 100644 --- a/TwitchRSS/twitchrss.py +++ b/TwitchRSS/twitchrss.py @@ -200,6 +200,6 @@ class RSSVoDServerOnlyVoD(RSSVoDServer): app = webapp2.WSGIApplication([ Route('/', MainPage), - Route('/vod/', RSSVoDServer), - Route('/vodonly/', RSSVoDServerOnlyVoD) + Route('/vod/', RSSVoDServer), + Route('/vodonly/', RSSVoDServerOnlyVoD) ], debug=False)