Skip to content

Commit 11e8cc3

Browse files
fix printf
1 parent 43fcdfd commit 11e8cc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,9 +583,9 @@ async def on_ready():
583583
print(f'Backing up Channel {channel.name} on {channel.guild.name}')
584584

585585
# Backup channels
586-
printf('\tRetrieving last message Id')
586+
print('\tRetrieving last message Id')
587587
last_msg_id = await get_last_message_id(channel)
588-
printf(f'\tContinue backup from last message Id: {last_msg_id}')
588+
print(f'\tContinue backup from last message Id: {last_msg_id}')
589589
new_last_msg_id = await backup_channel(channel, last_msg_id)
590590
if new_last_msg_id is not None:
591591
await set_last_message_id(channel, new_last_msg_id)

0 commit comments

Comments
 (0)