Fix missing character in log message

This commit is contained in:
Joshua Boniface 2021-09-27 00:49:43 -04:00
parent 55221b3d97
commit 1de069298c
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ def entrypoint():
# Update the new list
volume_list[pool] = new_volume_list
logger.out(f'{logger.fmt_blue}Volume list [{pool}:{logger.fmt_end} {" ".join(volume_list[pool])}', state='i')
logger.out(f'{logger.fmt_blue}Volume list [{pool}]:{logger.fmt_end} {" ".join(volume_list[pool])}', state='i')
# Start keepalived thread
keepalive_timer = pvcnoded.util.keepalive.start_keepalive_timer(logger, config, zkhandler, this_node)