Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

merge with stable

Changeset 92a4fe270cd6

Parents b99905837d30

Parents 31046bd49a17

by Steve Borho

Changes to 2 files · Browse files at 92a4fe270cd6 Showing diff from parent b99905837d30 31046bd49a17 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​gdialog.py Stacked
 
522
523
524
 
525
526
527
 
522
523
524
525
526
527
528
@@ -522,6 +522,7 @@
  , gtk.RESPONSE_CANCEL   , gtk.STOCK_SAVE   , gtk.RESPONSE_OK)) + file_save.set_do_overwrite_confirmation(True)   file_save.set_default_response(gtk.RESPONSE_OK)   file_save.set_current_folder(self.InitialDir)   file_save.set_current_name(self.FileName)
Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
546
547
548
 
 
 
549
550
551
 
546
547
548
549
550
551
552
553
554
@@ -546,6 +546,9 @@
  result = fd.run()     if result: + if os.path.exists(result): + os.remove(result) +   # In case new export args are added in the future, merge the   # hg defaults   exportOpts= self.merge_opts(commands.table['^export'][1], ())