Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

bugreport: include Qt and PyQt version in bug reports

Changeset 8842eab5f9b7

Parent 6c0ca3d2a132

by Steve Borho

Changes to one file · Browse files at 8842eab5f9b7 Showing diff from parent 6c0ca3d2a132 Diff from another changeset...

 
8
9
10
11
12
13
14
15
16
17
 
 
 
18
19
20
 
57
58
59
 
60
61
62
 
8
9
10
 
 
 
11
12
13
14
15
16
17
18
19
20
 
57
58
59
60
61
62
63
@@ -8,13 +8,13 @@
 import os  import sys   -from PyQt4.QtCore import * -from PyQt4.QtGui import * -  from mercurial import extensions, ui  from tortoisehg.util import hglib, version  from tortoisehg.hgqt.i18n import _   +from PyQt4.QtCore import * +from PyQt4.QtGui import * +  class BugReport(QDialog):     def __init__(self, opts, parent=None): @@ -57,6 +57,7 @@
  text += '** Python version: %s\n' % sys.version.replace('\n', '')   if os.name == 'nt':   text += self.getarch() + text += '** Qt-%s PyQt-%s\n' % (QT_VERSION_STR, PYQT_VERSION_STR)   text += hglib.tounicode(opts.get('error', 'N/A'))   text += '\n}}}'   return text