##// END OF EJS Templates
svn-support: Add a view to trigger the (re)generation of Apache mod_dav_svn configuration file....
svn-support: Add a view to trigger the (re)generation of Apache mod_dav_svn configuration file. The configuration is automatically generated if a repository group is changed. This is problematic in a case where no repository groups are used (yet). Therfore an option is needed to start the geneartion manually.

File last commit:

r1:854a839a default
r1012:af6bf7a6 default
Show More
patch-kombu-py-2-7-11.diff
15 lines | 543 B | text/x-diff | DiffLexer
/ pkgs / patch-kombu-py-2-7-11.diff
diff -rup kombu-1.5.1-orig/kombu/utils/__init__.py kombu-1.5.1/kombu/utils/__init__.py
--- kombu-1.5.1-orig/kombu/utils/__init__.py 2016-03-09 15:11:34.000000000 +0100
+++ kombu-1.5.1/kombu/utils/__init__.py 2016-03-09 15:15:52.000000000 +0100
@@ -11,7 +11,10 @@ Internal utilities.
import sys
from time import sleep
-from uuid import UUID, uuid4 as _uuid4, _uuid_generate_random
+from uuid import UUID, uuid4 as _uuid4
+
+# Fix for Python 2.7.11
+_uuid_generate_random = None
from kombu.utils.encoding import safe_repr as _safe_repr