Fixed last logging syntax

This commit is contained in:
jeancf 2020-12-19 10:36:59 +01:00
parent 3c7693fe66
commit 5df11dbe4b

View File

@ -546,7 +546,7 @@ def main(argv):
except FileNotFoundError: # The directory does not exist
pass
logging.info('Run time : %2.1f seconds', str(time.time() - start_time))
logging.info('Run time : %2.1f seconds' % (time.time() - start_time))
logging.info('_____________________________________________________________')