Skip to content

Commit 5d1ad43

Browse files
committed
Fix bug tracker address to point to github
1 parent be8ee5b commit 5d1ad43

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

IPython/frontend/terminal/ipapp.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,6 @@ def _add_arguments(self):
322322
# Crash handler for this application
323323
#-----------------------------------------------------------------------------
324324

325-
326325
_message_template = """\
327326
Oops, $self.app_name crashed. We do our best to make it stable, but...
328327
@@ -354,7 +353,7 @@ class IPAppCrashHandler(CrashHandler):
354353
def __init__(self, app):
355354
contact_name = release.authors['Fernando'][0]
356355
contact_email = release.authors['Fernando'][1]
357-
bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug'
356+
bug_tracker = 'http://github.com/ipython/ipython/issues'
358357
super(IPAppCrashHandler,self).__init__(
359358
app, contact_name, contact_email, bug_tracker
360359
)

IPython/kernel/clusterdir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ class ClusterDirCrashHandler(CrashHandler):
325325
def __init__(self, app):
326326
contact_name = release.authors['Brian'][0]
327327
contact_email = release.authors['Brian'][1]
328-
bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug'
328+
bug_tracker = 'http://github.com/ipython/ipython/issues'
329329
super(ClusterDirCrashHandler,self).__init__(
330330
app, contact_name, contact_email, bug_tracker
331331
)

0 commit comments

Comments
 (0)