Skip to content

Commit

Permalink
Fixed bug in format specifier for left justification.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgruendl committed Apr 9, 2020
1 parent 6355c8d commit 835fac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run_desmeds
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ if __name__ == "__main__":

if isinstance(value, str):
value = f'\'{value}\''
tileconfig_output.write(f"{key + ':':-18s} {value}\n")
tileconfig_output.write(f"{key + ':':<18s} {value}\n")

print(f"# Wrote yaml configuration to: {tileconf}")

Expand Down

0 comments on commit 835fac3

Please sign in to comment.