From f556e5e705ba881cb155b90f48371631dd989610 2011-03-13 05:07:04 From: Fernando Perez Date: 2011-03-13 05:07:04 Subject: [PATCH] Update crash handler to give git info, remove obsolete bzr stuff. --- diff --git a/IPython/CrashHandler.py b/IPython/CrashHandler.py index d8388be..5a537b5 100644 --- a/IPython/CrashHandler.py +++ b/IPython/CrashHandler.py @@ -168,7 +168,6 @@ $self.bug_tracker rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n') rpt_add('IPython version: %s \n\n' % Release.version) - rpt_add('BZR revision : %s \n\n' % Release.revision) rpt_add('Platform info : os.name -> %s, sys.platform -> %s' % (os.name,sys.platform) ) rpt_add(sec_sep+'Current user configuration structure:\n\n') @@ -195,7 +194,7 @@ class IPythonCrashHandler(CrashHandler): # Set argument defaults app_name = 'IPython' - bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug' + bug_tracker = 'https://github.com/ipython/ipython/issues' contact_name,contact_email = Release.authors[AUTHOR_CONTACT][:2] crash_report_fname = 'IPython_crash_report.txt' # Call parent constructor @@ -212,7 +211,6 @@ class IPythonCrashHandler(CrashHandler): rpt_add('*'*75+'\n\n'+'IPython post-mortem report\n\n') rpt_add('IPython version: %s \n\n' % Release.version) - rpt_add('BZR revision : %s \n\n' % Release.revision) rpt_add('Platform info : os.name -> %s, sys.platform -> %s' % (os.name,sys.platform) ) rpt_add(sec_sep+'Current user configuration structure:\n\n')