diff options
Diffstat (limited to 'embassy-executor/gen_config.py')
| -rw-r--r-- | embassy-executor/gen_config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/embassy-executor/gen_config.py b/embassy-executor/gen_config.py index e427d29f4..cf32bd530 100644 --- a/embassy-executor/gen_config.py +++ b/embassy-executor/gen_config.py | |||
| @@ -45,6 +45,12 @@ things = "" | |||
| 45 | for f in features: | 45 | for f in features: |
| 46 | name = f["name"].replace("_", "-") | 46 | name = f["name"].replace("_", "-") |
| 47 | for val in f["vals"]: | 47 | for val in f["vals"]: |
| 48 | things += f"## {val}" | ||
| 49 | if val == f["default"]: | ||
| 50 | things += " (default)\n" | ||
| 51 | else: | ||
| 52 | things += "\n" | ||
| 53 | |||
| 48 | things += f"{name}-{val} = []" | 54 | things += f"{name}-{val} = []" |
| 49 | if val == f["default"]: | 55 | if val == f["default"]: |
| 50 | things += " # Default" | 56 | things += " # Default" |
