Skip to content

Commit

Permalink
Traktarr: Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
desimaniac committed Nov 2, 2019
1 parent 8096c8d commit 7990eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion media/trakt.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def _user_is_authenticated(self, user):
def _renew_oauth_token_if_expired(self, user):
token_information = self.cfg['trakt'][user]

# Check if the acces_token for the user is expired
# Check if the access_token for the user is expired
expires_at = token_information['created_at'] + token_information['expires_in']
if expires_at < round(time.time()):
log.info("The access token for the user %s has expired. We're requesting a new one; please wait a moment.",
Expand Down
2 changes: 1 addition & 1 deletion traktarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,7 @@ def automatic_movies(
add_delay=add_delay,
sort=sort,
no_search=no_search,
otifications=notifications,
notifications=notifications,
authenticate_user=authenticate_user,
ignore_blacklist=local_ignore_blacklist,
rotten_tomatoes=rotten_tomatoes,
Expand Down

0 comments on commit 7990eb7

Please sign in to comment.