Skip to content

Commit

Permalink
Merge pull request rsalmei#33 from rsalmei/rsa-fix_cli_py2
Browse files Browse the repository at this point in the history
Fix start_server command line in python 2
  • Loading branch information
rsalmei authored Oct 16, 2018
2 parents 02d9260 + 9c4dff8 commit 84afcfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clearly/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding=utf-8
from __future__ import absolute_import, print_function, unicode_literals

VERSION = (0, 6, 2)
VERSION = (0, 6, 3)

__author__ = 'Rogério Sampaio de Almeida'
__email__ = '[email protected]'
Expand Down
4 changes: 2 additions & 2 deletions clearly/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ def server(**kwargs):
BROKER: The broker being used by celery, like "amqp://localhost".
"""
start_server(**{k: v for k, v in kwargs.items() if v},
blocking=True)
start_server(blocking=True,
**{k: v for k, v in kwargs.items() if v})

0 comments on commit 84afcfd

Please sign in to comment.