Author: justi9
Date: 2008-02-11 14:06:55 -0500 (Mon, 11 Feb 2008)
New Revision: 1681
Modified:
mgmt/cumin/python/cumin/exchange.py
Log:
Provisional fix for an intermittent page crash.
Modified: mgmt/cumin/python/cumin/exchange.py
===================================================================
--- mgmt/cumin/python/cumin/exchange.py 2008-02-11 18:58:46 UTC (rev 1680)
+++ mgmt/cumin/python/cumin/exchange.py 2008-02-11 19:06:55 UTC (rev 1681)
@@ -259,7 +259,8 @@
return branch.marshal()
def render_item_name(self, session, binding):
- return binding.queue.name
+ if binding.queue:
+ return binding.queue.name
class ExchangeForm(CuminForm):
def __init__(self, app, name):