# HG changeset patch # User Sigurd Meldgaard # Date 1256549628 -3600 # Node ID 1a9b04a236e106f15ee7f57d232d8cb230d4c6bb # Parent a392a52a9ae3e0758ad504ec4394250a30276e40 pretty_print: corrected error message diff -r a392a52a9ae3 -r 1a9b04a236e1 pysmcl/pretty_print.py --- a/pysmcl/pretty_print.py Mon Oct 26 10:32:19 2009 +0100 +++ b/pysmcl/pretty_print.py Mon Oct 26 10:33:48 2009 +0100 @@ -209,7 +209,7 @@ my_precedence = 1 r = exp.id else: - print exp, isinstance(exp, _ast.Name) + print exp, isinstance(exp, ast.Name) assert False, "Not implemented of type %s" % type(exp) if my_precedence <= prec: