Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

hgtk: use StringIO.getvalue() to read error strings

Changeset baafd54e400f

Parent f50841f19e5e

by Steve Borho

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

Change 1 of 1 Show Changes Only hgtk Stacked
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
59
60
61
62
63
64
65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
 
57
58
59
60
61
62
63
64
 #!/usr/bin/env python  #  # front-end script for TortoiseHg dialogs  #  # Copyright (C) 2008-9 Steve Borho <steve@borho.org>  # Copyright (C) 2008 TK Soh <teekaysoh@gmail.com>  #    import os  import sys    if hasattr(sys, "frozen"):   # Prepend C:\Program Files\TortoiseHg\gtk (equiv) to the path   from thgutil import paths   gtkpath = os.path.join(paths.bin_path, 'gtk')   os.environ['PATH'] = os.pathsep.join([gtkpath, os.environ['PATH']])  else:   # if hgtk is a symlink, insert symlink target directory in sys.path   thgpath = os.path.dirname(os.path.realpath(__file__))   testpath = os.path.join(thgpath, 'thgutil')   if os.path.isdir(testpath) and thgpath not in sys.path:   sys.path.insert(0, thgpath)      import pygtk  pygtk.require('2.0')  import gtk    from mercurial import demandimport  demandimport.ignore.append('win32com.shell')  demandimport.enable()  from mercurial import ui  import cStringIO    try:   import hggtk.hgtk  except ImportError:   sys.stderr.write("abort: couldn't find hggtk libraries in [%s]\n" %   ';'.join(sys.path))   sys.stderr.write("(check your install and PYTHONPATH)\n")   sys.exit(-1)    _ui = ui.ui()  capt = _ui.configbool('tortoisehg', 'stderrcapt', True)    if not capt or 'THGDEBUG' in os.environ:   sys.exit(hggtk.hgtk.dispatch(sys.argv[1:]))  else:   mystderr = cStringIO.StringIO()   sys.stderr = mystderr   ret = hggtk.hgtk.dispatch(sys.argv[1:])   mystderr.seek(0)   for l in mystderr.readlines():   if l.startswith('Traceback') or l.startswith('TypeError'):   from hggtk.bugreport import run   from hggtk.hgtk import gtkrun - mystderr.seek(0) - error = 'Recoverable runtime error (stderr):\n' + mystderr.read() + error = 'Recoverable runtime error (stderr):\n'+mystderr.getvalue()   opts = {}   opts['cmd'] = ' '.join(sys.argv[1:])   opts['error'] = error   opts['nofork'] = True   gtkrun(run, _ui, **opts)   break   sys.exit(ret)