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

rename: tweak text of user visible messages

Changeset 0beda4fad67b

Parent c52b5aeb3534

by Steve Borho

Changes to one file · Browse files at 0beda4fad67b Showing diff from parent c52b5aeb3534 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​rename.py Stacked
 
224
225
226
227
 
228
229
230
 
323
324
325
326
 
327
328
329
 
224
225
226
 
227
228
229
230
 
323
324
325
 
326
327
328
329
@@ -224,7 +224,7 @@
  args=(self.root, q, tgts, adj))   thread.start()   stbar.begin() - stbar.set_status_text('find source of ' + ', '.join(tgts)) + stbar.set_status_text('finding source of ' + ', '.join(tgts))   gobject.timeout_add(50, self.search_wait, thread, q, cmodel, stbar)     def search_thread(self, root, q, tgts, adj): @@ -323,7 +323,7 @@
  opts = mdiff.defaultopts   difftext = mdiff.unidiff(rr, '', aa, '', src, dest, None, opts=opts)   if not difftext: - l = '\n== %s and %s have identical contents ==\n' % (src, dest) + l = '== %s and %s have identical contents ==\n\n' % (src, dest)   buffer.insert(iter, l)   continue   difflines = difftext.splitlines(True)