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

bugreport: remove gettext wrapper for debug information

This info are for developers of THG and not for the final user.

Changeset d0e62fa7195e

Parent 457e94e2c48c

by Giampaolo Fadel

Changes to one file · Browse files at d0e62fa7195e Showing diff from parent 457e94e2c48c Diff from another changeset...

 
48
49
50
51
 
52
53
54
 
 
55
56
 
57
58
59
 
48
49
50
 
51
52
 
 
53
54
55
 
56
57
58
59
@@ -48,12 +48,12 @@
  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') % ( + text += '** Mercurial version (%s). TortoiseHg version (%s)\n' % (   hglib.hgversion, version.version()) - text += _('** Command: %s\n') % (self.opts['cmd']) - text += _('** CWD: %s\n') % os.getcwd() + text += '** Command: %s\n' % (self.opts['cmd']) + text += '** CWD: %s\n' % os.getcwd()   extlist = [x[0] for x in extensions.extensions()] - text += _('** Extensions loaded: %s\n') % ', '.join(extlist) + text += '** Extensions loaded: %s\n' % ', '.join(extlist)   text += self.opts['error']   text += '\n}}}\n'   textview.get_buffer().set_text(text)