Fix spacing in error message

develop
lethosor 2020-04-11 01:31:41 -04:00
parent 8b7989e93f
commit 9e9e71cad7
1 changed files with 1 additions and 1 deletions

@ -174,7 +174,7 @@ def all_keybinds_documented():
plugin_binds = set(re.findall(':dfhack-keybind:`(.*?)`', f.read()))
undocumented_binds = configured_binds - script_commands - plugin_binds
if undocumented_binds:
raise ValueError('The following DFHack commands have undocumented'
raise ValueError('The following DFHack commands have undocumented '
'keybindings: {}'.format(sorted(undocumented_binds)))