diff --git a/TwitchRSS/requirements.txt b/TwitchRSS/requirements.txt index f9a2e4a..a0765e1 100644 --- a/TwitchRSS/requirements.txt +++ b/TwitchRSS/requirements.txt @@ -3,4 +3,5 @@ cachetools==4.1.1 feedgen==0.9.0 Flask==1.1.2 ratelimit==2.2.1 -streamlink>=2.3.0 \ No newline at end of file +streamlink>=2.3.0 +GitPython==3.1.18 diff --git a/TwitchRSS/twitchrss.py b/TwitchRSS/twitchrss.py index f836ae4..0dcdfcd 100644 --- a/TwitchRSS/twitchrss.py +++ b/TwitchRSS/twitchrss.py @@ -129,8 +129,6 @@ def authorize(): TWITCH_OAUTH_TOKEN = r['access_token'] TWITCH_OAUTH_EXPIRE_EPOCH = int(r['expires_in']) + round(time.time()) logging.debug("oauth token aquired") - logging.debug(TWITCH_CLIENT_ID) - logging.debug(TWITCH_OAUTH_TOKEN) return except Exception as e: logging.warning("Fetch exception caught: %s" % e)