Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

rename: use single quote for single line doc strings

Changeset 950d0989a22a

Parent 4436ed7264a9

by Steve Borho

Changes to one file · Browse files at 950d0989a22a Showing diff from parent 4436ed7264a9 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​rename.py Stacked
 
18
19
20
21
 
22
23
 
24
25
26
 
140
141
142
143
 
144
145
146
147
 
148
149
150
151
 
152
153
154
155
 
156
157
158
 
18
19
20
 
21
22
 
23
24
25
26
 
140
141
142
 
143
144
145
146
 
147
148
149
150
 
151
152
153
154
 
155
156
157
158
@@ -18,9 +18,9 @@
  from mercurial.error import RepoError    class DetectRenameDialog(gtk.Window): - """ Detect renames after they occur """ + 'Detect renames after they occur'   def __init__(self, root=''): - """ Initialize the Dialog """ + 'Initialize the Dialog'   gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL)     self.root = root @@ -140,19 +140,19 @@
  self.settings.write()     def find_renames(self, widget, unktree): - '''User pressed 'find renames' button''' + 'User pressed "find renames" button'   pass     def find_copies(self, widget, unktree): - '''User pressed 'find copies' button''' + 'User pressed "find copies" button'   pass     def accept_match(self, widget, ctree): - '''User pressed 'accept match' button''' + 'User pressed "accept match" button'   pass     def candidate_row_act(self, tree, path, column): - '''User activated row of candidate list''' + 'User activated row of candidate list'   pass # accept copy or rename     def adj_changed(self, adj):