diff options
| -rw-r--r-- | python/client.py | 1 | ||||
| -rw-r--r-- | python/task_runner.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/python/client.py b/python/client.py index 8bfa889d..d07b60c3 100644 --- a/python/client.py +++ b/python/client.py @@ -3,6 +3,7 @@ import sys from db import dbconn from common import get_redis_queue +from subprocess import CalledProcessError from tasks import Rpc def run(): diff --git a/python/task_runner.py b/python/task_runner.py index 3c8ca247..66820890 100644 --- a/python/task_runner.py +++ b/python/task_runner.py @@ -3,6 +3,7 @@ import logging from systemd.daemon import notify from db import dbconn from common import get_redis_queue +from subprocess import CalledProcessError from tasks import Rpc def run(): |
