user.billing_job: fix logcall

This commit is contained in:
Luna Mendes 2018-11-14 23:27:57 -03:00
parent 61d553efb8
commit 40ea0ac603
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ async def _process_user_payments(app, user_id: int):
# give it as free.
await create_payment(sub_id, app)
else:
log.debug('sid={}, missing {threshold - delta.days} days', sub_id)
log.debug('sid={}, missing {} days',
sub_id, threshold - delta.days)
async def payment_job(app):