[Zope-Checkins] CVS: Zope3/utilities - unittestgui.py:1.5
Martijn Pieters
mj@zope.com
Thu, 27 Jun 2002 22:03:42 -0400
Update of /cvs-repository/Zope3/utilities
In directory cvs.zope.org:/tmp/cvs-serv12625
Modified Files:
unittestgui.py
Log Message:
Fix unwrapped line.
=== Zope3/utilities/unittestgui.py 1.4 => 1.5 ===
add((tk.Button(buttonFrame, text="Close", command=self.top.quit),
{'side': tk.BOTTOM, 'fill': tk.X}, 0))
- add((tk.Button(buttonFrame, text="About", command=self.showAboutDialog), {'side': tk.BOTTOM, 'fill': tk.X}, 0))
+ add((tk.Button(buttonFrame, text="About", command=self.showAboutDialog),
+ {'side': tk.BOTTOM, 'fill': tk.X}, 0))
add((tk.Button(buttonFrame, text="Help", command=self.showHelpDialog),
{'side': tk.BOTTOM, 'fill': tk.X}, 0))