diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2019-07-06 15:31:37 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2019-07-06 15:31:37 +0200 |
commit | a8a0de408cbb00c0dbb19acd0d26eef53f778ec0 (patch) | |
tree | 61bc4ed2490bd3e0c2d6278b53cd72454af7b16f /crocoite | |
parent | 71af236effa3acd32a7825b0f55146d6180c5e18 (diff) | |
download | crocoite-a8a0de408cbb00c0dbb19acd0d26eef53f778ec0.tar.gz crocoite-a8a0de408cbb00c0dbb19acd0d26eef53f778ec0.tar.bz2 crocoite-a8a0de408cbb00c0dbb19acd0d26eef53f778ec0.zip |
controller: Add missing import
Diffstat (limited to 'crocoite')
-rw-r--r-- | crocoite/controller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crocoite/controller.py b/crocoite/controller.py index 56fb3bb..2a848e8 100644 --- a/crocoite/controller.py +++ b/crocoite/controller.py @@ -22,7 +22,7 @@ Controller classes, handling actions required for archival """ -import time, tempfile, asyncio, json, os, shutil +import time, tempfile, asyncio, json, os, shutil, signal from itertools import islice from datetime import datetime from operator import attrgetter |