diff options
author | drebs <drebs@riseup.net> | 2016-09-27 22:11:39 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2016-10-03 12:01:46 -0300 |
commit | 5128c90b3c54546fd840d0efae1624ad69557a53 (patch) | |
tree | 3d729004b19045528b26e23cc2df61160b0cd1d0 /src/leap/bitmask/core | |
parent | 10330b390de4dfaf72853ecb4454bf4142415add (diff) |
[bug] use correct twisted log api for warnings
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/_web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/core/_web.py b/src/leap/bitmask/core/_web.py index ce30a40a..1798e7f6 100644 --- a/src/leap/bitmask/core/_web.py +++ b/src/leap/bitmask/core/_web.py @@ -59,7 +59,7 @@ class HTTPDispatcherService(service.Service): pkg_resources.resource_filename('leap.bitmask_js', 'public')) log.debug('webdir: %s' % webdir) else: - log.warning('bitmask_js not found, serving bitmask.core ui') + log.warn('bitmask_js not found, serving bitmask.core ui') webdir = os.path.abspath( pkg_resources.resource_filename('leap.bitmask.core', 'web')) root = File(webdir) |