# HG changeset patch # User Mads Kiilerich # Date 2016-09-12 17:41:19 # 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 --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -64,10 +64,3 @@ __url__ = 'https://kallithea-scm.org/' 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