Skip to content

Commit

Permalink
Get db.json from sg's master branch
Browse files Browse the repository at this point in the history
This change fetches the db.json file that acts as the source of truth
for the WHATWG repos from the master branch of whatwg/sg, now that
whatwg/sg#111 has been merged.
  • Loading branch information
Andreu Botella authored and annevk committed May 1, 2020
1 parent 5f1f2ea commit 202daf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def update(templates, variables):

def main():
templates = gather_templates()
db = json.loads(requests.get("https://github.com/whatwg/sg/raw/annevk/db/db.json").text)
db = json.loads(requests.get("https://github.com/whatwg/sg/raw/master/db.json").text)
local_db = json.loads(read_file("factory.json"))
for workstream in db["workstreams"]:
for standard in workstream["standards"]:
Expand Down

0 comments on commit 202daf7

Please sign in to comment.