We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fcdfd commit 11e8cc3Copy full SHA for 11e8cc3
main.py
@@ -583,9 +583,9 @@ async def on_ready():
583
print(f'Backing up Channel {channel.name} on {channel.guild.name}')
584
585
# Backup channels
586
- printf('\tRetrieving last message Id')
+ print('\tRetrieving last message Id')
587
last_msg_id = await get_last_message_id(channel)
588
- printf(f'\tContinue backup from last message Id: {last_msg_id}')
+ print(f'\tContinue backup from last message Id: {last_msg_id}')
589
new_last_msg_id = await backup_channel(channel, last_msg_id)
590
if new_last_msg_id is not None:
591
await set_last_message_id(channel, new_last_msg_id)
0 commit comments