Show More
@@ -93,3 +93,9 b' if len(VERSION) > 3:' | |||
|
93 | 93 | __version__ += VERSION[4] |
|
94 | 94 | else: |
|
95 | 95 | __version__ += '0' |
|
96 | ||
|
97 | # Hack for making the celery dependency kombu==1.5.1 compatible with Python | |
|
98 | # 2.7.11 which has https://hg.python.org/releases/2.7.11/rev/24bdc4940e81 | |
|
99 | import uuid | |
|
100 | if not hasattr(uuid, '_uuid_generate_random'): | |
|
101 | uuid._uuid_generate_random = None |
General Comments 0
You need to be logged in to leave comments.
Login now