Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

thgrepo: ignore backup requests for non-existant files

Changeset ef69b49dd90d

Parent 2e17936f934b

by Steve Borho

Changes to one file · Browse files at ef69b49dd90d Showing diff from parent 2e17936f934b Diff from another changeset...

 
488
489
490
 
 
491
492
493
 
488
489
490
491
492
493
494
495
@@ -488,6 +488,8 @@
  trashcan = self.join('Trashcan')   if not os.path.isdir(trashcan):   os.mkdir(trashcan) + if not os.path.exists(path): + return   name = os.path.basename(path)   root, ext = os.path.splitext(name)   dest = tempfile.mktemp(ext, root, trashcan)