From 5d1ad43932a7de179f77c80e7391934e2a1253f1 2010-10-27 06:19:35 From: Fernando Perez Date: 2010-10-27 06:19:35 Subject: [PATCH] Fix bug tracker address to point to github --- diff --git a/IPython/frontend/terminal/ipapp.py b/IPython/frontend/terminal/ipapp.py index 442e98a..874a63f 100755 --- a/IPython/frontend/terminal/ipapp.py +++ b/IPython/frontend/terminal/ipapp.py @@ -322,7 +322,6 @@ class IPAppConfigLoader(BaseAppConfigLoader): # Crash handler for this application #----------------------------------------------------------------------------- - _message_template = """\ Oops, $self.app_name crashed. We do our best to make it stable, but... @@ -354,7 +353,7 @@ class IPAppCrashHandler(CrashHandler): def __init__(self, app): contact_name = release.authors['Fernando'][0] contact_email = release.authors['Fernando'][1] - bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug' + bug_tracker = 'http://github.com/ipython/ipython/issues' super(IPAppCrashHandler,self).__init__( app, contact_name, contact_email, bug_tracker ) diff --git a/IPython/kernel/clusterdir.py b/IPython/kernel/clusterdir.py index 6a7c296..0fb8874 100755 --- a/IPython/kernel/clusterdir.py +++ b/IPython/kernel/clusterdir.py @@ -325,7 +325,7 @@ class ClusterDirCrashHandler(CrashHandler): def __init__(self, app): contact_name = release.authors['Brian'][0] contact_email = release.authors['Brian'][1] - bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug' + bug_tracker = 'http://github.com/ipython/ipython/issues' super(ClusterDirCrashHandler,self).__init__( app, contact_name, contact_email, bug_tracker )