- Spacing fix.

This commit is contained in:
ccremers 2006-08-06 15:35:22 +00:00
parent a4c5bd399c
commit a8b93c7bc4

View File

@ -275,8 +275,8 @@ class ResultWindow(wx.Frame):
claimdetails = str(cl.claimtype) claimdetails = str(cl.claimtype)
if cl.parameter: if cl.parameter:
claimdetails += " %s " % (cl.parameter) claimdetails += " %s" % (cl.parameter)
addtxt(claimdetails,4) addtxt(claimdetails + " ",4)
# add view button (if needed) # add view button (if needed)
n = len(cl.attacks) n = len(cl.attacks)
@ -345,7 +345,7 @@ class ScytherRun(object):
# Great, we verified stuff, progress to the claim report # Great, we verified stuff, progress to the claim report
title = "Scyther results : %s" % mode title = "Scyther results : %s" % mode
self.resultwin = resultwin = ResultWindow(self,mainwin,title) self.resultwin = resultwin = ResultWindow(self,mainwin,title)
resultwin.Show(1) resultwin.Show(True)
t = AttackThread(self,resultwin) t = AttackThread(self,resultwin)
t.start() t.start()