Skip to content

Commit

Permalink
searchBacklog needs int
Browse files Browse the repository at this point in the history
  • Loading branch information
BKSteve committed Feb 11, 2024
1 parent 4735005 commit 9614388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickchill/oldbeard/searchBacklog.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def nextRun(self):
if self.action.lastBacklog <= 1:
return datetime.date.today()
else:
return datetime.date.fromordinal(self.action.lastBacklog + self.action.cycleTime)
return datetime.date.fromordinal(int(self.action.lastBacklog + self.action.cycleTime))


class BacklogSearcher(object):
Expand Down

0 comments on commit 9614388

Please sign in to comment.