changeset 6202:940a48e28a03

celery: drop workaround for old kombu and Python 2.7.11 after upgrade to Celery 3 and a new Kombu version
author Mads Kiilerich <madski@unity3d.com>
date Mon, 12 Sep 2016 17:41:19 +0200
parents d55ff973d01f
children 995254e30c7b
files kallithea/__init__.py
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/__init__.py	Mon Sep 12 17:41:19 2016 +0200
+++ b/kallithea/__init__.py	Mon Sep 12 17:41:19 2016 +0200
@@ -64,10 +64,3 @@
 
 is_windows = __platform__ in ['Windows']
 is_unix = not is_windows
-
-
-# Hack for making the celery dependency kombu==1.5.1 compatible with Python
-# 2.7.11 which has https://hg.python.org/releases/2.7.11/rev/24bdc4940e81
-import uuid
-if not hasattr(uuid, '_uuid_generate_random'):
-    uuid._uuid_generate_random = None