From 835fac362b314ed672253cca2b8578e36bfe1eb9 Mon Sep 17 00:00:00 2001 From: Robert Gruendl Date: Thu, 9 Apr 2020 08:41:00 -0500 Subject: [PATCH] Fixed bug in format specifier for left justification. --- bin/run_desmeds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_desmeds b/bin/run_desmeds index a05a3c4..afe2d7a 100755 --- a/bin/run_desmeds +++ b/bin/run_desmeds @@ -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}")