##// 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 322 # Crash handler for this application
323 323 #-----------------------------------------------------------------------------
324 324
325
326 325 _message_template = """\
327 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 353 def __init__(self, app):
355 354 contact_name = release.authors['Fernando'][0]
356 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 357 super(IPAppCrashHandler,self).__init__(
359 358 app, contact_name, contact_email, bug_tracker
360 359 )
@@ -325,7 +325,7 b' class ClusterDirCrashHandler(CrashHandler):'
325 325 def __init__(self, app):
326 326 contact_name = release.authors['Brian'][0]
327 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 329 super(ClusterDirCrashHandler,self).__init__(
330 330 app, contact_name, contact_email, bug_tracker
331 331 )
General Comments 0
You need to be logged in to leave comments. Login now