Fix an issue with the Activity Stream where we weren't performing the right type conversion to track object types

This commit is contained in:
Matthew Jones
2013-11-08 11:08:11 -05:00
parent b7b22fa7f8
commit 710b01c333
4 changed files with 11 additions and 9 deletions

View File

@@ -24,7 +24,8 @@ class ActivityStreamRegistrar(object):
m2m_changed.connect(activity_stream_associate, sender=m2m_attr.through,
dispatch_uid=str(self.__class__) + str(m2m_attr.through) + "_associate")
except AttributeError:
logger.warning("Failed to attach m2m activity stream tracker on class %s attribute %s" % (model, m2mfield.name))
pass
#logger.warning("Failed to attach m2m activity stream tracker on class %s attribute %s" % (model, m2mfield.name))
def disconnect(self, model):
if model in self.models: