Fix prune notify message typo

This commit is contained in:
Sam 2022-02-02 17:15:24 +00:00 committed by GitHub
parent 672a397411
commit 94be055d2f

View File

@ -144,7 +144,5 @@ async def delete(context):
async def send_prune_notify(context, count_buffer, count):
return await context.client.send_message(
context.chat_id,
lang('spn_deleted')
+ str(count_buffer) + " / " + str(count)
+ lang('prune_hint2')
"%s %s / %s %s" % (lang('spn_deleted'), str(count_buffer), str(count), lang('prune_hint2'))
)