make log output friendlier

This commit is contained in:
Emil Lerch 2023-04-22 14:31:32 -07:00
parent d8f8786994
commit aa9f455a5f
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ class BFConfigParser:
self.cfg_obj = ConfigObj(self.cfg_infile)
def read(self, file=None):
printf('Reading configuration from file: %s' % file)
printf('Reading configuration from file:')
printf(' %s' % file)
self.cfg_infile = file
if file is not None:
self.cfg_obj = ConfigObj(self.cfg_infile)