Skip to content

Commit a240643

Browse files
committed
Fix typo in EasyConfig.update error message
1 parent ac1661b commit a240643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easyconfig/easyconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ def update(self, key, value, allow_duplicate=True):
682682
# For easyconfig parameters that are dictionaries, input value must also be a dictionary
683683
if isinstance(self[key], dict) and not isinstance(value, dict):
684684
msg = "Can't update configuration value for %s, because the attempted"
685-
msg += "update value (%s), is not a dictionary (type: %s)."
685+
msg += " update value (%s), is not a dictionary (type: %s)."
686686
raise EasyBuildError(msg, key, value, type(value))
687687

688688
# Grab current parameter value so we can modify it

0 commit comments

Comments
 (0)