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

bugreport: slightly improve bug report format

This will make pasted tracebacks even more readable in the Bitbucket
issue tracker. Plus it removes some extra whitespace.

Changeset 6b4d52313cd3

Parent 181a4945dbab

by Steve Borho

Changes to one file · Browse files at 6b4d52313cd3 Showing diff from parent 181a4945dbab Diff from another changeset...

 
44
45
46
47
 
48
49
50
 
55
56
57
58
 
59
60
61
 
44
45
46
 
47
48
49
50
 
55
56
57
 
58
59
60
61
@@ -44,7 +44,7 @@
  close.connect('clicked', gtk.main_quit)   hbbox.add(close)   - text = '\n{{{\n' # Wrap in Bitbucket wiki preformat markers + text = '{{{\n#!python\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') @@ -55,7 +55,7 @@
  extlist = [x[0] for x in extensions.extensions()]   text += '** Extensions loaded: %s\n' % ', '.join(extlist)   text += self.opts['error'] - text += '\n}}}\n' + text += '\n}}}'   textview.get_buffer().set_text(text)   return vbox