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

Merge with stable

Changeset 6735fe45fb44

Parents e14dfb18f3f7

Parents 1987ef95433e

by Steve Borho

Changes to one file · Browse files at 6735fe45fb44 Showing diff from parent e14dfb18f3f7 1987ef95433e Diff from another changeset...

 
352
353
354
355
 
356
357
358
 
360
361
362
363
 
364
365
366
 
352
353
354
 
355
356
357
358
 
360
361
362
 
363
364
365
366
@@ -352,7 +352,7 @@
  cmdline = self.composeCommand()     # 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() @@ -360,7 +360,7 @@
  self.prev_dest = dest     # start cloning - self.cmd.run(cmdline) + self.cmd.run(cmdline, useproc=src.startswith('p4://'))     ### Signal Handlers ###