Skip to content

Commit

Permalink
[fix] python 3.4 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Jul 5, 2017
1 parent 94522cb commit edec5d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aio_pika/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self, host: str = 'localhost', port: int = 5672, login: str = 'gues
credentials=self.__credentials,
virtual_host=virtual_host,
ssl=ssl,
**kwargs,
**kwargs
)

self._connection = None
Expand Down
2 changes: 1 addition & 1 deletion aio_pika/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

team_email = 'me@mosquito.su'

version_info = (0, 12, 2)
version_info = (0, 12, 3)

__author__ = ", ".join("{} <{}>".format(*info) for info in author_info)
__version__ = ".".join(map(str, version_info))

0 comments on commit edec5d8

Please sign in to comment.