From 0d94358f1015132a196c26c4fa6d940592aba52d Mon Sep 17 00:00:00 2001 From: Jordan ERNST Date: Thu, 20 Jun 2019 10:21:42 +0200 Subject: [PATCH] Print more informations about processing --- IFPass.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/IFPass.py b/IFPass.py index eb2e336..8f6d584 100644 --- a/IFPass.py +++ b/IFPass.py @@ -23,7 +23,7 @@ from colorama import init from termcolor import colored -version = 'dev' # dev/devnocam +version = '3.1-1' # dev/devnocam configdir = os.path.join(os.getenv('PROGRAMDATA'), 'IFPass') config = os.path.join(configdir, 'IFPass.conf') @@ -248,7 +248,7 @@ def bkpdb(): def fillcard(clientID, titrename, firstname, dateexp, barcode, picture): - print("Création de la carte avec les informations...", end='') + print("Création du verso de la carte avec les informations...", end='') try: im = Image.open(pngtemplate) except FileNotFoundError: @@ -287,6 +287,7 @@ def fillcard(clientID, titrename, firstname, dateexp, barcode, picture): def mergepdf(clientID): + print("Fusion du recto et du verso de la carte...", end='') cartefilename = os.path.join(imgdir, clientID + '.pdf') output = PdfFileWriter() @@ -302,6 +303,7 @@ def mergepdf(clientID): output.write(f) os.remove(imgdir + clientID + '_Front.pdf') + print(colored('[OK]', 'green')) return cartefilename @@ -481,6 +483,7 @@ def memberdo(choix, member): print(colored("La date d'expiration a bien été mise à jour !\n", 'blue', attrs=['bold'])) elif choix == '3': # Print card + cartefilename = os.path.join(imgdir, clientID + '.pdf') printcard(cartefilename) else: print(colored('Choix incorrect !\n', 'red', attrs=['bold']))