|
Lines 813-819
def get_build_profile(env=None):
|
Link Here
|
|---|
|
| 813 |
with open(lockfile, "r") as f: |
813 |
with open(lockfile, "r") as f: |
| 814 |
for line in f: |
814 |
for line in f: |
| 815 |
if line.startswith("options ="): |
815 |
if line.startswith("options ="): |
| 816 |
key, val = line.split('=') |
816 |
key, val = line.split('=', 1) |
| 817 |
arr = val.split(',') |
817 |
arr = val.split(',') |
| 818 |
for x in arr: |
818 |
for x in arr: |
| 819 |
optkey,optval = x.split(':') |
819 |
optkey,optval = x.split(':') |