From e6fe864073cff562724bd4dcebe8d6295fdeef84 Mon Sep 17 00:00:00 2001 From: yoshiko2 Date: Sun, 31 Jan 2021 19:32:59 +0800 Subject: [PATCH] Welcome message output location adjustment --- AV_Data_Capture.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AV_Data_Capture.py b/AV_Data_Capture.py index b0ce1c5..2d596a7 100755 --- a/AV_Data_Capture.py +++ b/AV_Data_Capture.py @@ -135,16 +135,16 @@ def create_data_and_move_with_custom_number(file_path: str, c: config.Config, cu if __name__ == '__main__': version = '4.4.1' + print('[*]================== AV Data Capture ===================') + print('[*]' + version.center(54)) + print('[*]=====================================================') + # Parse command line args single_file_path, folder_path, config_file, custom_number, auto_exit = argparse_function(version) # Read config.ini conf = config.Config(path=config_file) - print('[*]================== AV Data Capture ===================') - print('[*]' + version.center(54)) - print('[*]======================================================') - if conf.update_check(): check_update(version)