We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c958f commit 7948aeaCopy full SHA for 7948aea
autolab_core/yaml_config.py
@@ -92,7 +92,7 @@ def _load_config(self, filename):
92
def recursive_load(matchobj, path):
93
first_spacing = matchobj.group(1)
94
other_spacing = first_spacing.replace('-', ' ')
95
- fname = os.path.join(path, matchobj.group(2))
+ fname = os.path.join(path, matchobj.group(2).rstrip())
96
new_path, _ = os.path.split(fname)
97
new_path = os.path.realpath(new_path)
98
text = ''
0 commit comments