Skip to content

Commit

Permalink
Add advertissement about how to replace templates
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-ynx committed Jul 26, 2022
1 parent fc337bd commit a273dd9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')),
Expand All @@ -31,7 +33,7 @@
break
time.sleep(6)
except SystemExit:
print('Exiting the program')
print('Exiting the program...')
raise
finally:
time.sleep(5)
Expand Down

0 comments on commit a273dd9

Please sign in to comment.