From 5c53c187fff573ef73a643949b3bded1084b0983 Mon Sep 17 00:00:00 2001
From: Josh Bell <josh@lindenlab.com>
Date: Fri, 30 Nov 2007 00:53:21 +0000
Subject: [PATCH] Trivial change to not print an error from a library (was
 blocking use in CGIs). Suggested by donovan.

---
 indra/lib/python/indra/base/lluuid.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/lib/python/indra/base/lluuid.py b/indra/lib/python/indra/base/lluuid.py
index 5209de45a0b..eb0c557b045 100644
--- a/indra/lib/python/indra/base/lluuid.py
+++ b/indra/lib/python/indra/base/lluuid.py
@@ -276,7 +276,8 @@ def uuid_bits_to_uuid(bits):
     from mulib import stacked
     stacked.NoProducer()  # just to exercise stacked
 except:
-    print "Couldn't import mulib.stacked, not registering UUID converter"
+    #print "Couldn't import mulib.stacked, not registering UUID converter"
+    pass
 else:
     def convertUUID(uuid, req):
         req.write(str(uuid))
-- 
GitLab