diff options
author | 2021-05-04 16:15:57 -0400 | |
---|---|---|
committer | 2021-05-04 16:15:57 -0400 | |
commit | f7c9fecf5dbab7320ff91eecd322c5521034b628 (patch) | |
tree | df85de4a0546da6c57efeb8eba21abda80196551 /bot/__init__.py | |
parent | chore: Change back to the original string (diff) |
chore: Replace the remaining double quotes with double quotes
Diffstat (limited to 'bot/__init__.py')
-rw-r--r-- | bot/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__init__.py b/bot/__init__.py index 71b7c8a3..669f9f5d 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -64,7 +64,7 @@ logging.getLogger("matplotlib").setLevel(logging.ERROR) # Setup new logging configuration logging.basicConfig( - format='%(asctime)s - %(name)s %(levelname)s: %(message)s', + format="%(asctime)s - %(name)s %(levelname)s: %(message)s", datefmt="%D %H:%M:%S", level=logging.TRACE if Client.debug else logging.DEBUG, handlers=[console_handler, file_handler], |