Skip to content

Commit 701c230

Browse files
committed
Minor code style fix
1 parent a01d9a0 commit 701c230

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reframe/core/logging.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,8 @@ def _extract_handlers(site_config, handlers_group):
707707
try:
708708
create_handler = _create_handlers[handler_type]
709709
except KeyError:
710-
raise ConfigError(f'unknown handler type: {handler_type}') from None
710+
raise ConfigError(
711+
f'unknown handler type: {handler_type}') from None
711712

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

0 commit comments

Comments
 (0)