Skip to content

Commit

Permalink
Minor code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarak committed Oct 18, 2024
1 parent a01d9a0 commit 701c230
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reframe/core/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,8 @@ def _extract_handlers(site_config, handlers_group):
try:
create_handler = _create_handlers[handler_type]
except KeyError:
raise ConfigError(f'unknown handler type: {handler_type}') from None
raise ConfigError(
f'unknown handler type: {handler_type}') from None

hdlr = create_handler(site_config, f'{handler_prefix}/{i}')
if hdlr is None:
Expand Down

0 comments on commit 701c230

Please sign in to comment.