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 /jobs/JobSpawner.py | |
| parent | 4671e0dec5eab28941e598f109dbf77ed551a707 (diff) | |
Run futurize on the codebase for python3
Diffstat (limited to 'jobs/JobSpawner.py')
| -rwxr-xr-x | jobs/JobSpawner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jobs/JobSpawner.py b/jobs/JobSpawner.py index ff9744f..6e2c636 100755 --- a/jobs/JobSpawner.py +++ b/jobs/JobSpawner.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -class JobSpawner: +from builtins import object +class JobSpawner(object): """OVERRIDE ME Returns an array (or using 'yield') of Job objects to run""" def get_sub_jobs(self, config): |
