From a273dd9a757084a4125ba6bc86860ec04d71d1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Ployart?= Date: Tue, 26 Jul 2022 10:46:34 +0200 Subject: [PATCH] Add advertissement about how to replace templates --- main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 73fad2f..87edc61 100644 --- a/main.py +++ b/main.py @@ -8,7 +8,9 @@ from config.definitions import assets_dir if __name__ == '__main__': - print('NexusFlow 2022 starting...') + print('NexusDownloadFlow 2022 starting...') + print('Do not forget to replace the assets templates (1, 2 & 3) in order to match with the screenshots ' + 'taken from your monitor!') try: templates = [cv2.imread(os.path.join(assets_dir, 'template1.png')), cv2.imread(os.path.join(assets_dir, 'template2.png')), @@ -31,7 +33,7 @@ break time.sleep(6) except SystemExit: - print('Exiting the program') + print('Exiting the program...') raise finally: time.sleep(5)