Skip to content

Commit

Permalink
Enable celery 3.1.23 to import the package instead of breaking on an …
Browse files Browse the repository at this point in the history
…unknown symbol
  • Loading branch information
bastb committed May 27, 2016
1 parent e69b203 commit 0184918
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions amqp/__init__.py
Expand Up @@ -75,3 +75,12 @@
'Message',
]
__all__ += _all_exceptions

# Enable celery 3.1.23 to import the package instead of breaking on an unknown symbol
from vine import promise

__all_externals__ = [
'promise',
]

__all__ += __all_externals__

0 comments on commit 0184918

Please sign in to comment.