Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions did/plugins/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
from tenacity import (RetryError, Retrying, retry_if_exception_type,
stop_after_attempt)

from did.base import Config, ReportError, get_token
from did.base import Config, Date, ReportError, get_token
from did.stats import Stats, StatsGroup
from did.utils import listed, log, pretty

Expand Down Expand Up @@ -126,7 +126,7 @@ def commented_in_range(self,
@staticmethod
def until(until):
"""Issue #362: until for GH should have - delta(day=1)"""
return until - 1
return Date(until - 1)

def request(self, url):
while True:
Expand Down