diff options
| author | Hornwitser <[email protected]> | 2018-06-22 16:08:27 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-08-22 21:43:53 -0400 |
| commit | c8b49d37be8c4aabb2d5896708f9dff91ffae368 (patch) | |
| tree | d0b49a0532a69f7c34b330d54cc57b65719ad1ea /discord/__main__.py | |
| parent | [lint] Remove unnecessary lambdas (diff) | |
| download | discord.py-c8b49d37be8c4aabb2d5896708f9dff91ffae368.tar.xz discord.py-c8b49d37be8c4aabb2d5896708f9dff91ffae368.zip | |
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
Diffstat (limited to 'discord/__main__.py')
| -rw-r--r-- | discord/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/__main__.py b/discord/__main__.py index 6be6fc6c..88837c79 100644 --- a/discord/__main__.py +++ b/discord/__main__.py @@ -197,7 +197,7 @@ def newbot(parser, args): with open(str(new_directory / 'config.py'), 'w', encoding='utf-8') as fp: fp.write('token = "place your token here"\ncogs = []\n') except OSError as e: - parser.error('could not create config file ({})'.format(e)) + parser.error('could not create config file ({})'.format(e)) try: with open(str(new_directory / 'bot.py'), 'w', encoding='utf-8') as fp: |