From a8b93c7bc4931670a77bc7428e551b2a7cd25b20 Mon Sep 17 00:00:00 2001 From: ccremers Date: Sun, 6 Aug 2006 15:35:22 +0000 Subject: [PATCH] - Spacing fix. --- gui/Scytherthread.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/Scytherthread.py b/gui/Scytherthread.py index d22230f..d586564 100644 --- a/gui/Scytherthread.py +++ b/gui/Scytherthread.py @@ -275,8 +275,8 @@ class ResultWindow(wx.Frame): claimdetails = str(cl.claimtype) if cl.parameter: - claimdetails += " %s " % (cl.parameter) - addtxt(claimdetails,4) + claimdetails += " %s" % (cl.parameter) + addtxt(claimdetails + " ",4) # add view button (if needed) n = len(cl.attacks) @@ -345,7 +345,7 @@ class ScytherRun(object): # Great, we verified stuff, progress to the claim report title = "Scyther results : %s" % mode self.resultwin = resultwin = ResultWindow(self,mainwin,title) - resultwin.Show(1) + resultwin.Show(True) t = AttackThread(self,resultwin) t.start()