##// END OF EJS Templates
Fix bug tracker address to point to github
Fernando Perez -
Show More
@@ -322,7 +322,6 b' class IPAppConfigLoader(BaseAppConfigLoader):'
322 # Crash handler for this application
322 # Crash handler for this application
323 #-----------------------------------------------------------------------------
323 #-----------------------------------------------------------------------------
324
324
325
326 _message_template = """\
325 _message_template = """\
327 Oops, $self.app_name crashed. We do our best to make it stable, but...
326 Oops, $self.app_name crashed. We do our best to make it stable, but...
328
327
@@ -354,7 +353,7 b' class IPAppCrashHandler(CrashHandler):'
354 def __init__(self, app):
353 def __init__(self, app):
355 contact_name = release.authors['Fernando'][0]
354 contact_name = release.authors['Fernando'][0]
356 contact_email = release.authors['Fernando'][1]
355 contact_email = release.authors['Fernando'][1]
357 bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug'
356 bug_tracker = 'http://github.com/ipython/ipython/issues'
358 super(IPAppCrashHandler,self).__init__(
357 super(IPAppCrashHandler,self).__init__(
359 app, contact_name, contact_email, bug_tracker
358 app, contact_name, contact_email, bug_tracker
360 )
359 )
@@ -325,7 +325,7 b' class ClusterDirCrashHandler(CrashHandler):'
325 def __init__(self, app):
325 def __init__(self, app):
326 contact_name = release.authors['Brian'][0]
326 contact_name = release.authors['Brian'][0]
327 contact_email = release.authors['Brian'][1]
327 contact_email = release.authors['Brian'][1]
328 bug_tracker = 'https://bugs.launchpad.net/ipython/+filebug'
328 bug_tracker = 'http://github.com/ipython/ipython/issues'
329 super(ClusterDirCrashHandler,self).__init__(
329 super(ClusterDirCrashHandler,self).__init__(
330 app, contact_name, contact_email, bug_tracker
330 app, contact_name, contact_email, bug_tracker
331 )
331 )
General Comments 0
You need to be logged in to leave comments. Login now