Fix warning about can't add films - limit per user

This commit is contained in:
localhost_frssoft 2022-10-17 02:28:02 +03:00
parent ab7a5cfa52
commit 725df056ed

View File

@ -161,7 +161,7 @@ def scan_context_thread():
logger.info(f'Предложение от {acct} было отлонено - фильм в опросе существует')
fail_limit[acct] += 1
else:
message_writer.append("❌ Вы не можете добавить больше 2х фильмов")
message_writer.append(f"❌ Вы не можете добавить больше {limit_movies_per_user}x фильмов")
logger.info(f'Предложение от {acct} было отлонено - лимит на пользователя')
fail_limit[acct] += 1
if message_writer != []: