diff options
author | Josh Bell <josh@lindenlab.com> | 2007-11-30 00:53:21 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2007-11-30 00:53:21 +0000 |
commit | 5c53c187fff573ef73a643949b3bded1084b0983 (patch) | |
tree | 8243dc5b59a3431ae6c763658b80f954ec24034d | |
parent | f5d50760d8d60deba17f209578b1c6416926eefd (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.py | 3 |
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)) |