Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

thgimport: do not include temp directory in MRU list

Changeset 0d30a9d62bbb

Parent ecc7a90cc37a

by Yuki KODAMA

Changes to one file · Browse files at 0d30a9d62bbb Showing diff from parent ecc7a90cc37a Diff from another changeset...

 
274
275
276
 
 
277
278
279
 
274
275
276
277
278
279
280
281
@@ -274,6 +274,8 @@
  def add_to_mru(self):   dirs = self.get_dirpaths()   for dir in dirs: + if dir.find(tempfile.gettempdir()) != -1: + continue   self.recent.add(dir)   self.src_list.append([dir])   self.settings.write()