Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Aug 10, 2023
1 parent ec48ceb commit ce2edd0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions define_masters.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import yaml
import os
import shutil

base_path = "autogen/"
config = { "private": { } }
exec(open("master-private.cfg").read(), config, { })
config = {"private": {}}
exec(open("master-private.cfg").read(), config, {})

with open('os_info.yaml', 'r') as f:
os_info = yaml.safe_load(f)
Expand Down Expand Up @@ -53,4 +53,3 @@
f.write(buildbot_tac)
idx += 1
print(arch, len(master_config['builders']))

0 comments on commit ce2edd0

Please sign in to comment.