diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2018-03-26 11:25:04 -0400 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2018-03-26 13:04:25 -0400 |
commit | 36148ad8bbdb94162b2926f4700d935ee4dc5994 (patch) | |
tree | 1d893c4ca0b0afa407f7724c7942dfbf643560af /buildscripts/resmokelib/logging/formatters.py | |
parent | d62d631f0ca40c5199fdfae2980080ca0cc982b5 (diff) | |
download | mongo-36148ad8bbdb94162b2926f4700d935ee4dc5994.tar.gz |
SERVER-23312 Format Python files with yapf
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 |