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

hgcmd: whitespace cleanup

Changeset 46d672b0b019

Parent 1d9238734f7e

by Steve Borho

Changes to one file · Browse files at 46d672b0b019 Showing diff from parent 1d9238734f7e Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgcmd.py Stacked
 
51
52
53
54
 
 
55
56
57
 
51
52
53
 
54
55
56
57
58
@@ -51,7 +51,8 @@
  hbox = gtk.HBox()     self.status_text = gtk.Label() - self.status_text.set_text(toutf(" ".join(cmdline).replace("\n", " "))) + text = toutf(' '.join(cmdline).replace('\n', ' ')) + self.status_text.set_text(text)   self.status_text.set_alignment(0, 0.5)   self.status_text.set_ellipsize(pango.ELLIPSIZE_END)   hbox.pack_start(self.status_text, True, True, 3)