Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable clone: allow re-use of previous dest path if it has been deleted (refs #514)

Changeset 1987ef95433e

Parent 870fbc475129

by Steve Borho

Changes to one file · Browse files at 1987ef95433e Showing diff from parent 870fbc475129 Diff from another changeset...

 
309
310
311
312
 
313
314
315
 
309
310
311
 
312
313
314
315
@@ -309,7 +309,7 @@
  cmdline.append(dest)     # do not make the same clone twice (see #514) - if dest == self.prev_dest: + if dest == self.prev_dest and os.path.exists(dest):   qtlib.ErrorMsgBox(_('TortoiseHg Clone'),   _('Please enter a new destination path.'))   self.dest_combo.setFocus()