From: <ror...@us...> - 2007-07-03 01:39:52
|
Revision: 81 http://roreditor.svn.sourceforge.net/roreditor/?rev=81&view=rev Author: rorthomas Date: 2007-07-02 18:39:50 -0700 (Mon, 02 Jul 2007) Log Message: ----------- * minor bugfix Modified Paths: -------------- trunk/lib/ror/svngui.py Modified: trunk/lib/ror/svngui.py =================================================================== --- trunk/lib/ror/svngui.py 2007-07-03 01:38:56 UTC (rev 80) +++ trunk/lib/ror/svngui.py 2007-07-03 01:39:50 UTC (rev 81) @@ -33,11 +33,11 @@ dlg = wx.MessageDialog(self.pr, "No Update available!", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() - self.restart() elif self.changes > 2: dlg = wx.MessageDialog(self.pr, "Update finished!\nThe Application now restarts itself!", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() + self.restart() def notify(self, event_dict): self.changes += 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |