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

changeset: remove redundant temporary variable

Changeset ce2b5977aa86

Parent ac380e05bc45

by Yuki KODAMA

Changes to one file · Browse files at ce2b5977aa86 Showing diff from parent ac380e05bc45 Diff from another changeset...

 
484
485
486
487
488
489
490
 
 
 
491
492
493
 
484
485
486
 
 
 
 
487
488
489
490
491
492
@@ -484,10 +484,9 @@
  wfile = util.localpath(self.curfile)   wfile, ext = os.path.splitext(os.path.basename(wfile))   filename = "%s@%d%s" % (wfile, self.currev, ext) - fd = gtklib.NativeSaveFileDialogWrapper(Title=_("Save file to"), - InitialDir=self.cwd, - FileName=filename) - result = fd.run() + result = gtklib.NativeSaveFileDialogWrapper(Title=_("Save file to"), + InitialDir=self.cwd, + FileName=filename).run()   if result:   q = Queue.Queue()   cpath = util.canonpath(self.repo.root, self.cwd, self.curfile)