# HG changeset patch # User Mads Kiilerich # Date 1473694879 -7200 # Node ID 940a48e28a03017775606c32446526297619cbb7 # Parent d55ff973d01f14cdce6e95fa45adb07ffef1f806 celery: drop workaround for old kombu and Python 2.7.11 after upgrade to Celery 3 and a new Kombu version diff -r d55ff973d01f -r 940a48e28a03 kallithea/__init__.py --- 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