Fix typo in unparsing of a class definition.

This commit is contained in:
Mark Dickinson 2010-06-29 18:38:59 +00:00
parent 927ccd257f
commit 578aa56f9a
2 changed files with 3 additions and 1 deletions

View file

@ -215,7 +215,7 @@ class Unparser:
if t.kwargs:
if comma: self.write(", ")
else: comma = True
self.write("*")
self.write("**")
self.dispatch(t.kwargs)
self.write(")")