Skip to content

Commit

Permalink
Force argument should have been optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
nate1280 committed Feb 7, 2014
1 parent 52f1985 commit 21a93ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion traktapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def testAccount(self, force=False):

# url: http://api.trakt.tv/account/settings/<apikey>
# returns: all settings for authenticated user
def getAccountSettings(self, force):
def getAccountSettings(self, force=False):
_interval = (60 * 60 * 24 * 7) - (60 * 60) # one week less one hour

_next = getSettingAsInt('trakt_settings_last') + _interval
Expand Down

0 comments on commit 21a93ac

Please sign in to comment.