Berker Peksag added the comment:

It's broken because we've deleted the devguide repository from hg.python.org. 
Here is a patch.

----------
nosy: +berker.peksag
status: unread -> chatting

_______________________________________________________
PSF Meta Tracker <metatrac...@psf.upfronthosting.co.za>
<http://psf.upfronthosting.co.za/roundup/meta/issue552>
_______________________________________________________
diff --git a/extensions/jnosy.py b/extensions/jnosy.py
--- a/extensions/jnosy.py
+++ b/extensions/jnosy.py
@@ -7,17 +7,17 @@ of the nosy list:
 """
 
 import urllib
 try:
     import json
 except ImportError:
     import simplejson as json
 
-url = 'http://hg.python.org/devguide/raw-file/default/experts.rst'
+url = 'https://raw.githubusercontent.com/python/devguide/master/experts.rst'
 
 # possible states
 no_table = 0  # not parsing a table
 table_header = 1  # parsing the header
 table_content = 2  # parsing the content
 table_end = 3  # reached the end of the table
 
 def experts_as_json():
_______________________________________________
Tracker-discuss mailing list
Tracker-discuss@python.org
https://mail.python.org/mailman/listinfo/tracker-discuss
Code of Conduct: https://www.python.org/psf/codeofconduct/

Reply via email to