diff options
Diffstat (limited to 'buildscripts/resmokelib/logging/formatters.py')
-rw-r--r-- | buildscripts/resmokelib/logging/formatters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/logging/formatters.py b/buildscripts/resmokelib/logging/formatters.py index 4cc36da32d4..058c6d512c8 100644 --- a/buildscripts/resmokelib/logging/formatters.py +++ b/buildscripts/resmokelib/logging/formatters.py @@ -42,7 +42,7 @@ class ISO8601Formatter(logging.Formatter): # The offset is positive if the local timezone is behind (east of) UTC, and negative if it # is ahead (west) of UTC. - utc_offset_prefix = "-" if utc_offset_secs > 0 else "+" + utc_offset_prefix = "-" if utc_offset_secs > 0 else "+" utc_offset_secs = abs(utc_offset_secs) utc_offset_mins = (utc_offset_secs / 60) % 60 |