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

history: remove redundant temporary variable

Changeset 98c8fc988440

Parent 7e93521eb82e

by Yuki KODAMA

Changes to one file · Browse files at 98c8fc988440 Showing diff from parent 7e93521eb82e Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
660
661
662
663
664
665
666
667
 
 
 
668
669
670
 
660
661
662
 
 
 
 
 
663
664
665
666
667
668
@@ -660,11 +660,9 @@
  def export_patch(self, menuitem):   rev = self.currow[treemodel.REVID]   filename = "%s_rev%s.patch" % (os.path.basename(self.repo.root), rev) - fd = gtklib.NativeSaveFileDialogWrapper(Title=_('Save patch to'), - InitialDir=self.repo.root, - FileName=filename) - result = fd.run() - + result = gtklib.NativeSaveFileDialogWrapper(Title=_('Save patch to'), + InitialDir=self.repo.root, + FileName=filename).run()   if result:   if os.path.exists(result):   res = gdialog.Confirm(_('Confirm Overwrite'), [], self,