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

bugreport: wrap bug report text in wiki markers

This makes it dead easy for users to generate readable Bitbucket bug reports.

Changeset c1232aee254b

Parent c5323d04c4a7

by Steve Borho

Changes to one file · Browse files at c1232aee254b Showing diff from parent c5323d04c4a7 Diff from another changeset...

 
44
45
46
47
 
 
48
49
50
 
54
55
56
 
57
58
59
 
44
45
46
 
47
48
49
50
51
 
55
56
57
58
59
60
61
@@ -44,7 +44,8 @@
  close.connect('clicked', gtk.main_quit)   hbbox.add(close)   - text = _('\n** Please report this bug to' + text = '\n{{{\n' # Wrap in Bitbucket wiki preformat markers + text += _('** Please report this bug to'   ' tortoisehg-discuss@lists.sourceforge.net or'   ' http://bitbucket.org/tortoisehg/stable/issues\n')   text += _('** Mercurial version (%s). TortoiseHg version (%s)\n') % ( @@ -54,6 +55,7 @@
  extlist = [x[0] for x in extensions.extensions()]   text += _('** Extensions loaded: %s\n') % ', '.join(extlist)   text += self.opts['error'] + text += '\n}}}\n'   textview.get_buffer().set_text(text)   return vbox