##// END OF EJS Templates
Update crash handler to give git info, remove obsolete bzr stuff.
Fernando Perez -
Show More
@@ -168,7 +168,6 b' $self.bug_tracker'
168
168
169 rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n')
169 rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n')
170 rpt_add('IPython version: %s \n\n' % Release.version)
170 rpt_add('IPython version: %s \n\n' % Release.version)
171 rpt_add('BZR revision : %s \n\n' % Release.revision)
172 rpt_add('Platform info : os.name -> %s, sys.platform -> %s' %
171 rpt_add('Platform info : os.name -> %s, sys.platform -> %s' %
173 (os.name,sys.platform) )
172 (os.name,sys.platform) )
174 rpt_add(sec_sep+'Current user configuration structure:\n\n')
173 rpt_add(sec_sep+'Current user configuration structure:\n\n')
@@ -195,7 +194,7 b' class IPythonCrashHandler(CrashHandler):'
195
194
196 # Set argument defaults
195 # Set argument defaults
197 app_name = 'IPython'
196 app_name = 'IPython'
198 bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug'
197 bug_tracker = 'https://github.com/ipython/ipython/issues'
199 contact_name,contact_email = Release.authors[AUTHOR_CONTACT][:2]
198 contact_name,contact_email = Release.authors[AUTHOR_CONTACT][:2]
200 crash_report_fname = 'IPython_crash_report.txt'
199 crash_report_fname = 'IPython_crash_report.txt'
201 # Call parent constructor
200 # Call parent constructor
@@ -212,7 +211,6 b' class IPythonCrashHandler(CrashHandler):'
212
211
213 rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n')
212 rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n')
214 rpt_add('IPython version: %s \n\n' % Release.version)
213 rpt_add('IPython version: %s \n\n' % Release.version)
215 rpt_add('BZR revision : %s \n\n' % Release.revision)
216 rpt_add('Platform info : os.name -> %s, sys.platform -> %s' %
214 rpt_add('Platform info : os.name -> %s, sys.platform -> %s' %
217 (os.name,sys.platform) )
215 (os.name,sys.platform) )
218 rpt_add(sec_sep+'Current user configuration structure:\n\n')
216 rpt_add(sec_sep+'Current user configuration structure:\n\n')
General Comments 0
You need to be logged in to leave comments. Login now