debug /live

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-10-01 01:38:07 +02:00
parent 08fc034973
commit d9a57cf201
1 changed files with 4 additions and 1 deletions

View File

@ -500,7 +500,10 @@ if SITE == 'pcmemes.net':
unit = 'year'
modifier = 525600
minutes = quantity * modifier
try: minutes = quantity * modifier
except:
print(unit, flush=True)
return None
actual = f'{quantity} {unit}'
if quantity > 1: actual += 's'