Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fraoustin committed Aug 12, 2017
2 parents 2b816c4 + 44cc12b commit 594c76f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,11 @@
Feature
=======

V. 0.1.1
========

- add param url_prefix

V. 0.1.0
========

Expand Down
2 changes: 1 addition & 1 deletion flask_logsocketio/__init__.py
Expand Up @@ -5,7 +5,7 @@
Module flask_logsocketio
"""

__version_info__ = (0, 1, 0)
__version_info__ = (0, 1, 1)
__version__ = '.'.join([str(val) for val in __version_info__])

__namepkg__ = "flask-logsocketio"
Expand Down
4 changes: 2 additions & 2 deletions flask_logsocketio/main.py
Expand Up @@ -35,8 +35,8 @@ def emit(self, record):

class LogSocketIo(Blueprint):

def __init__(self, name='logsocketio', import_name=__name__, ui_testing=False, level=NOTSET, *args, **kwargs):
Blueprint.__init__(self, name, import_name, *args, **kwargs)
def __init__(self, name='logsocketio', import_name=__name__, ui_testing=False, url_prefix="", level=NOTSET, *args, **kwargs):
Blueprint.__init__(self, name, import_name, url_prefix=url_prefix, *args, **kwargs)
self._level = level
if ui_testing:
self.add_url_rule('/ui/<path:filename>', 'static_web', static_web)
Expand Down

0 comments on commit 594c76f

Please sign in to comment.