Skip to content
Snippets Groups Projects
Commit fbfd8516 authored by Ryan Williams's avatar Ryan Williams
Browse files

Little trick to further sweep SL-56900 under the rug. Not reviewed, I wish...

Little trick to further sweep SL-56900 under the rug.  Not reviewed, I wish this were otherwise, but it needs to be committed to release so the osiris external can pick it up and I don't want to have to manually create /var/www/.python-eggs anymore.
parent 5595a996
No related branches found
No related tags found
No related merge requests found
...@@ -838,8 +838,9 @@ undef = LLSD(None) ...@@ -838,8 +838,9 @@ undef = LLSD(None)
# register converters for stacked, if stacked is available # register converters for stacked, if stacked is available
try: try:
from mulib import stacked from mulib import stacked
stacked.NoProducer() # just to exercise stacked
except: except:
print "Not able to import stacked, skipping registering llsd converters." print "Couldn't import mulib.stacked, not registering LLSD converters"
else: else:
def llsd_convert_json(llsd_stuff, request): def llsd_convert_json(llsd_stuff, request):
callback = request.get_header('callback') callback = request.get_header('callback')
......
...@@ -279,8 +279,9 @@ def uuid_bits_to_uuid(bits): ...@@ -279,8 +279,9 @@ def uuid_bits_to_uuid(bits):
try: try:
from mulib import stacked from mulib import stacked
stacked.NoProducer() # just to exercise stacked
except: except:
print "Couldn't import mulib, not registering UUID converter" print "Couldn't import mulib.stacked, not registering UUID converter"
else: else:
def convertUUID(uuid, req): def convertUUID(uuid, req):
req.write(str(uuid)) req.write(str(uuid))
......
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