Config generator: fix a typo

Change-Id: I059d9fe786adacd2efbf8c9bb29720dad017b226
This commit is contained in:
Cyril Roelandt 2015-11-30 13:59:32 +01:00
parent 5079120f31
commit bea8509780
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def write_config_file(config, f):
# Write the rest of the config.
for key in config:
if key == 'profile':
if key == 'profiles':
continue
f.write('\n')
f.write(yaml.dump({key: config[key]}, default_flow_style=False))