Skip to content

Commit 3a94a1e

Browse files
committed
Allow alignment paddings for runtimes
1 parent b8788f0 commit 3a94a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

running/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def parse_modifier_strs(configuration: 'Configuration', mod_strs: List[str]) ->
5454

5555

5656
def parse_config_str(configuration: 'Configuration', c: str) -> Tuple['Runtime', List['Modifier']]:
57-
runtime = configuration.get("runtimes")[c.split('|')[0]]
57+
runtime = configuration.get("runtimes")[c.split('|')[0].strip()]
5858
mods = parse_modifier_strs(configuration, c.split('|')[1:])
5959
return runtime, mods
6060

0 commit comments

Comments
 (0)