Skip to content

Commit

Permalink
uprev and correct commend
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Dec 9, 2016
1 parent 128765d commit ce13a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arq/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, *,
:param settings: connection settings to use for the pool
:param existing_pool: existing pool, if set no new pool is craeted, instead this one is used
"""
# the "or getattr(...) or" seems odd but it allows the mixin to work with subclasses with initialise
# the "or getattr(...) or" seems odd but it allows the mixin to work with subclasses which initialise
# loop or settings before calling super().__init__ and don't pass those parameters.
self.loop = loop or getattr(self, 'loop', None) or asyncio.get_event_loop()
self.settings = settings or getattr(self, 'settings', None) or ConnectionSettings()
Expand Down
2 changes: 1 addition & 1 deletion arq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ['VERSION']

VERSION = StrictVersion('0.1.0')
VERSION = StrictVersion('0.2.0')

0 comments on commit ce13a60

Please sign in to comment.