Skip to content
Snippets Groups Projects
Commit 5c53c187 authored by Josh Bell's avatar Josh Bell
Browse files

Trivial change to not print an error from a library (was blocking use in...

Trivial change to not print an error from a library (was blocking use in CGIs). Suggested by donovan.
parent f5d50760
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,8 @@ def uuid_bits_to_uuid(bits): ...@@ -276,7 +276,8 @@ def uuid_bits_to_uuid(bits):
from mulib import stacked from mulib import stacked
stacked.NoProducer() # just to exercise stacked stacked.NoProducer() # just to exercise stacked
except: except:
print "Couldn't import mulib.stacked, not registering UUID converter" #print "Couldn't import mulib.stacked, not registering UUID converter"
pass
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