10 lines
210 B
Python
10 lines
210 B
Python
from couchpotato.core.providers.base import YarrProvider
|
|
import time
|
|
|
|
|
|
class NZBProvider(YarrProvider):
|
|
type = 'nzb'
|
|
|
|
def calculateAge(self, unix):
|
|
return int(time.time() - unix) / 24 / 60 / 60
|