diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-07 01:06:37 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-07 01:06:37 +0100 |
commit | 74a9dc27c6a0ae973a1eb555c96e27d17e1a9f37 (patch) | |
tree | 3f9b260d74c70b1df189d16c6f0cb53aaefb0d3a /gitautodeploy/gitautodeploy.py | |
parent | f43eaba3f6c2d9d4cd64d15bd41e1defa98071fb (diff) | |
download | Git-Auto-Deploy-74a9dc27c6a0ae973a1eb555c96e27d17e1a9f37.zip Git-Auto-Deploy-74a9dc27c6a0ae973a1eb555c96e27d17e1a9f37.tar.gz Git-Auto-Deploy-74a9dc27c6a0ae973a1eb555c96e27d17e1a9f37.tar.bz2 |
Bug fix
Diffstat (limited to 'gitautodeploy/gitautodeploy.py')
-rw-r--r-- | gitautodeploy/gitautodeploy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitautodeploy/gitautodeploy.py b/gitautodeploy/gitautodeploy.py index fa756cd..e5edc3c 100644 --- a/gitautodeploy/gitautodeploy.py +++ b/gitautodeploy/gitautodeploy.py @@ -384,6 +384,7 @@ class GitAutoDeploy(object): def serve_wss(self): """Start a web socket server over SSL, used by the web UI to get notifications about updates.""" import os + from .events import SystemEvent # Start a web socket server if the web UI is enabled if not self._config['web-ui-enabled']: |