From b532a29d76da9322907f01c44c4c6bdd42dd825d Mon Sep 17 00:00:00 2001 From: Roi Rav-Hon Date: Wed, 9 May 2018 21:02:26 +0300 Subject: [PATCH] Even more pep8\! --- logzio/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logzio/handler.py b/logzio/handler.py index 7906123..ac05da7 100644 --- a/logzio/handler.py +++ b/logzio/handler.py @@ -72,7 +72,7 @@ class LogzioHandler(logging.Handler): def format_message(self, message): now = datetime.datetime.utcnow() timestamp = now.strftime('%Y-%m-%dT%H:%M:%S') + \ - '.%03d' % (now.microsecond / 1000) + 'Z' + '.%03d' % (now.microsecond / 1000) + 'Z' return_json = { 'logger': message.name,