diff --git a/apps/payment/tasks.py b/apps/payment/tasks.py index f248a3f5..cc2e2f03 100644 --- a/apps/payment/tasks.py +++ b/apps/payment/tasks.py @@ -60,6 +60,6 @@ def transaction_to_roistat(user_id, payment_id, event_name, amount, time, status except: resp_json = None if resp.status_code != 200 or not resp_json or not resp_json.get('processed'): - logger.error('TRANSACTION_TO_ROISTAT for payment # %d, %sRUB: %s' % (payment_id, amount, resp.text)) + logger.error('TRANSACTION_TO_ROISTAT for payment # %d, %s RUB: %s' % (payment_id, amount, resp.text)) else: logger.info('TRANSACTION_TO_ROISTAT: ' + str(resp))