diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..844f49a --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +discord.py diff --git a/scrape-logs.py b/scrape-logs.py index 07465ba..f20e680 100644 --- a/scrape-logs.py +++ b/scrape-logs.py @@ -73,11 +73,11 @@ async def get_logs(channel): except: continue if not args.quiet: - await client.send_message(channel,'The messages for this channel have been saved.') + await client.send_message(channel, 'The messages for this channel have been saved.') log.info("Messages for channel {0} finished downloading".format(channel.name)) except Exception as e: if not args.quiet: - await client.send_message(channel,'Failed saving logs: {}'.format(e.message)) + await client.send_message(channel, 'Failed saving logs: {}'.format(e.message)) log.error("Error while downloading channel {0}: {1}".format(channel.name, e.message))