summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/core/websocket.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/core/websocket.py')
-rw-r--r--src/leap/bitmask/core/websocket.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/bitmask/core/websocket.py b/src/leap/bitmask/core/websocket.py
index 5569c6c..97a2d40 100644
--- a/src/leap/bitmask/core/websocket.py
+++ b/src/leap/bitmask/core/websocket.py
@@ -61,11 +61,11 @@ class WebSocketsDispatcherService(service.Service):
# we server static files under "/" ..
webdir = os.path.abspath(
- pkg_resources.resource_filename("leap.bitmask.core", "web"))
+ pkg_resources.resource_filename('leap.bitmask.core', 'web'))
root = File(webdir)
# and our WebSocket server under "/ws"
- root.putChild(u"bitmask", resource)
+ root.putChild(u'bitmask', resource)
# both under one Twisted Web Site
site = Site(root)