Skip to content
Snippets Groups Projects
Commit c39d9f8f authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

lol

parent a7d22e70
No related branches found
No related tags found
No related merge requests found
......@@ -121,11 +121,15 @@ def _compile_particular_content_property_list_class(zpf, fields):
return u''.join(mod)
import struct
from coolamqp.framing.base import AMQPContentPropertyList
def compile_particular_content_property_list_class(zpf, fields):
import struct
from coolamqp.framing.base import AMQPContentPropertyList
q = _compile_particular_content_property_list_class(zpf, fields)
loc = {'struct': struct, 'AMQPContentPropertyList': AMQPContentPropertyList}
exec (q, globals(), loc)
loc = dict(globals(), **{
'struct': struct,
'AMQPContentPropertyList': AMQPContentPropertyList})
exec (q, loc)
return loc['ParticularContentTypeList']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment