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/__init__.py | |
| parent | 4671e0dec5eab28941e598f109dbf77ed551a707 (diff) | |
Run futurize on the codebase for python3
Diffstat (limited to 'jobs/__init__.py')
| -rwxr-xr-x | jobs/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jobs/__init__.py b/jobs/__init__.py index 0e780eb..a6eff83 100755 --- a/jobs/__init__.py +++ b/jobs/__init__.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +from builtins import str +from builtins import object import os import sys import inspect @@ -11,7 +13,7 @@ import jobs import jobs.JobBase import jobs.JobSpawner -class JobFinder: +class JobFinder(object): def __init__(self, config): """ Opens the jobs folder and looks at every .py module in that directory. |
