diff --git a/orchestra/contrib/resources/models.py b/orchestra/contrib/resources/models.py index 7b1e0ff9..f4491ab6 100644 --- a/orchestra/contrib/resources/models.py +++ b/orchestra/contrib/resources/models.py @@ -198,8 +198,10 @@ class ResourceData(models.Model): ('content_type', 'object_id'), ) + # def __str__(self): + # return "%s: %s" % (self.resource, self.content_object) def __str__(self): - return "%s: %s" % (self.resource, self.content_object) + return "%s" % (self.content_object) @property def unit(self):