I don't know if there's a ticket, but one way to fix it is to make the
following two lines of parent.Parent.__init__
else:
category = Category.join((category, Sets().Facades()))
into
if category is None:
category = Sets().Facades()
else:
if isinstance(category, (list, tuple)):
category = Category.join(tuple(category) +
(Sets().Facades(),))
else:
category = Category.join((category, Sets().Facades()))
David
On Sun, Aug 19, 2012 at 12:54 PM, Vincent Delecroix
> --
> --
> To post to this group, send an email to
sage-...@googlegroups.com
> To unsubscribe from this group, send an email to
sage-devel+...@googlegroups.com
> For more options, visit this group at
http://groups.google.com/group/sage-devel
> URL:
http://www.sagemath.org
>
>
>