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

thgrepo: add underscore before random noise in trashcan filenames

This makes the folder somewhat easier to browse

Changeset 82cbddf70525

Parent 781f3c0a5467

by Steve Borho

Changes to one file · Browse files at 82cbddf70525 Showing diff from parent 781f3c0a5467 Diff from another changeset...

 
493
494
495
496
 
497
498
499
 
493
494
495
 
496
497
498
499
@@ -493,7 +493,7 @@
  return   name = os.path.basename(path)   root, ext = os.path.splitext(name) - dest = tempfile.mktemp(ext, root, trashcan) + dest = tempfile.mktemp(ext, root+'_', trashcan)   shutil.copyfile(path, dest)     return thgrepository