summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Bell <josh@lindenlab.com>2007-11-30 00:53:21 +0000
committerJosh Bell <josh@lindenlab.com>2007-11-30 00:53:21 +0000
commit5c53c187fff573ef73a643949b3bded1084b0983 (patch)
tree8243dc5b59a3431ae6c763658b80f954ec24034d
parentf5d50760d8d60deba17f209578b1c6416926eefd (diff)
Trivial change to not print an error from a library (was blocking use in CGIs). Suggested by donovan.
-rw-r--r--indra/lib/python/indra/base/lluuid.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/lib/python/indra/base/lluuid.py b/indra/lib/python/indra/base/lluuid.py
index 5209de45a0..eb0c557b04 100644
--- a/indra/lib/python/indra/base/lluuid.py
+++ b/indra/lib/python/indra/base/lluuid.py
@@ -276,7 +276,8 @@ try:
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))