From: <ror...@us...> - 2007-07-08 19:53:21
|
Revision: 99 http://roreditor.svn.sourceforge.net/roreditor/?rev=99&view=rev Author: rorthomas Date: 2007-07-08 12:53:20 -0700 (Sun, 08 Jul 2007) Log Message: ----------- * added error prevention to svn update Modified Paths: -------------- trunk/lib/ror/starter.py trunk/lib/ror/svn.py Modified: trunk/lib/ror/starter.py =================================================================== --- trunk/lib/ror/starter.py 2007-07-08 19:13:57 UTC (rev 98) +++ trunk/lib/ror/starter.py 2007-07-08 19:53:20 UTC (rev 99) @@ -117,7 +117,7 @@ f.close() def OnDepGraph(self, event=None): - dlg = wx.MessageDialog(self, "to get this working, you must install tools/pyparsing*.exe and tools/graphviz*.exe!", "Info", wx.OK | wx.ICON_INFORMATION) + dlg = wx.MessageDialog(self, "to get this working, you must install tools/pyparsing*.exe and tools/graphviz*.exe (relative to the installation directory)!", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() from depchecker import * Modified: trunk/lib/ror/svn.py =================================================================== --- trunk/lib/ror/svn.py 2007-07-08 19:13:57 UTC (rev 98) +++ trunk/lib/ror/svn.py 2007-07-08 19:53:20 UTC (rev 99) @@ -77,6 +77,11 @@ changes = 0 try: client = pysvn.Client() + + # try to restore previous broken updates + client.unlock(path) + client.cleanup(path) + revision_before = getRevision(client, path) print "updating from revision %d ..." % revision_before if callback is None: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |