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

rename: add --verbose + remove extra whitespace

Changeset 3438db19a8e5

Parent 9268e7c64890

by Johan Samyn

Changes to one file · Browse files at 3438db19a8e5 Showing diff from parent 9268e7c64890 Diff from another changeset...

 
6
7
8
9
10
11
12
 
18
19
20
21
22
23
24
 
233
234
235
 
236
237
238
 
365
366
367
368
369
370
 
6
7
8
 
9
10
11
 
17
18
19
 
20
21
22
 
231
232
233
234
235
236
237
 
364
365
366
 
367
368
@@ -6,7 +6,6 @@
 # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.   -  import os, sys, cStringIO    from PyQt4.QtCore import * @@ -18,7 +17,6 @@
 from tortoisehg.hgqt import cmdui, qtlib, thgrepo, thread  from tortoisehg.util import hglib, paths   -  class RenameDialog(QDialog):   """TortoiseHg rename dialog"""   @@ -233,6 +231,7 @@
  else:   cmdline = ['rename']   cmdline += ['-R', self.repo.root] + cmdline.append('-v')   if self.opts['after']:   cmdline.append('-A')   cmdline.append(hglib.fromunicode(src)) @@ -365,6 +364,5 @@
  s = QSettings()   s.setValue('rename/geom', self.saveGeometry())   -  def run(ui, *pats, **opts):   return RenameDialog(ui, pats, **opts)