diff --git a/v7/latex/latex/tree.py b/v7/latex/latex/tree.py index 6e75ef4f..aea30714 100644 --- a/v7/latex/latex/tree.py +++ b/v7/latex/latex/tree.py @@ -341,7 +341,7 @@ def recombine_as_text(self, reescape=True): def __str__(self): """Generate textual representation.""" - return "TikzPicture(" + self.args + "; " + repr(self.formula) + ")" + return "TikzPicture(" + str(self.args) + "; " + repr(self.formula) + ")" def visit(self, visitor, *args, **kw): """Process with TreeVisitor object. Passes ``args`` and ``kw`` to the corresponding method of ``visitor``."""