From: <ror...@us...> - 2007-07-16 13:18:36
|
Revision: 108 http://roreditor.svn.sourceforge.net/roreditor/?rev=108&view=rev Author: rorthomas Date: 2007-07-16 06:18:30 -0700 (Mon, 16 Jul 2007) Log Message: ----------- * svn update bugfix Modified Paths: -------------- trunk/lib/ror/svn.py Modified: trunk/lib/ror/svn.py =================================================================== --- trunk/lib/ror/svn.py 2007-07-16 12:37:26 UTC (rev 107) +++ trunk/lib/ror/svn.py 2007-07-16 13:18:30 UTC (rev 108) @@ -79,8 +79,11 @@ client = pysvn.Client() # try to restore previous broken updates - client.unlock(path) - client.cleanup(path) + try: + client.unlock(path) + client.cleanup(path) + except: + pass revision_before = getRevision(client, path) print "updating from revision %d ..." % revision_before This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |