diff options
author | Tom Ritter <tom@ritter.vg> | 2020-09-07 23:54:47 -0400 |
---|---|---|
committer | Tom Ritter <tom@ritter.vg> | 2020-09-07 23:54:47 -0400 |
commit | 7deaed5205d0db6139f1c5e1f7c2b72181b1a208 (patch) | |
tree | a9f11fe72bf4b20d787bd90bbcb7a78902dac1ae /statustracker.py | |
parent | 4671e0dec5eab28941e598f109dbf77ed551a707 (diff) |
Run futurize on the codebase for python3
Diffstat (limited to 'statustracker.py')
-rwxr-xr-x | statustracker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/statustracker.py b/statustracker.py index d092266..f212566 100755 --- a/statustracker.py +++ b/statustracker.py @@ -1,9 +1,10 @@ #!/usr/bin/env python +from builtins import object import time import logging -class StatusTracker: +class StatusTracker(object): emailNotificationsAreWorking = False lastRunJob = 0 def __init__(self, config): |