##// END OF EJS Templates
meta-tags: cleanup support for metatags....
meta-tags: cleanup support for metatags. - fixes problem of html-escape + supported link - no longer extract url from description, you have to use new url => tag - tags are extracted to the beginning of the description during rendering - show helpers in proper places in groups/repos/forks

File last commit:

r1:854a839a default
r2091:90bf6103 default
Show More
patch-kombu-msgpack.diff
12 lines | 629 B | text/x-diff | DiffLexer
/ pkgs / patch-kombu-msgpack.diff
diff -rup kombu-1.5.1-orig/kombu/serialization.py kombu-1.5.1/kombu/serialization.py
--- kombu-1.5.1-orig/kombu/serialization.py 2016-03-09 15:11:34.000000000 +0100
+++ kombu-1.5.1/kombu/serialization.py 2016-03-09 15:19:20.000000000 +0100
@@ -318,7 +318,7 @@ def register_msgpack():
"""See http://msgpack.sourceforge.net/"""
try:
import msgpack
- registry.register('msgpack', msgpack.packs, msgpack.unpacks,
+ registry.register('msgpack', msgpack.packb, msgpack.unpackb,
content_type='application/x-msgpack',
content_encoding='binary')
except ImportError: