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

commit: cleanup docstring, wrap at 80 chars

Changeset a7cacdf9595c

Parent 21e734f02bfd

by Steve Borho

Changes to one file · Browse files at a7cacdf9595c Showing diff from parent 21e734f02bfd Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
25
26
27
28
29
30
31
 
 
 
32
33
34
 
211
212
213
214
 
 
215
216
217
 
25
26
27
 
 
 
 
28
29
30
31
32
33
 
210
211
212
 
213
214
215
216
217
@@ -25,10 +25,9 @@
 from hglib import fromutf    class GCommit(GStatus): - """GTK+ based dialog for displaying repository status and committing changes. - - Also provides related operations like add, delete, remove, revert, refresh, - ignore, diff, and edit. + """GTK+ based dialog for displaying repository status and committing + changes. Also provides related operations like add, delete, remove, + revert, refresh, ignore, diff, and edit.   """     ### Overrides of base class methods ### @@ -211,7 +210,8 @@
  live = False   buf = self.text.get_buffer()   if buf.get_char_count() > 10 and buf.get_modified(): - dialog = Confirm(_('Exit'), [], self, _('Save commit message at exit?')) + dialog = Confirm(_('Exit'), [], self, + _('Save commit message at exit?'))   res = dialog.run()   if res == gtk.RESPONSE_YES:   self._update_recent_messages(cur_msg)