From 5d53d4eedcf507b38d0021694d1ce83a01b8bddd Mon Sep 17 00:00:00 2001 From: ddenoncin Date: Fri, 2 Dec 2022 14:36:12 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20du=20nom=20du=20dossier=20cr=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- documentex/documentex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentex/documentex.py b/documentex/documentex.py index f2fb734..90578cb 100644 --- a/documentex/documentex.py +++ b/documentex/documentex.py @@ -83,8 +83,6 @@ def documentex(dossier: str, type_document: str): auteur_titre = constantes.auteur_titre auteur_adresse_mail = constantes.auteur_adresse_mail - click.clear() - click.secho("Nouveau dossier LaTeX", fg="red") if appartenance: classe = constantes.classe_appartenance @@ -227,3 +225,5 @@ def documentex(dossier: str, type_document: str): shutil.copytree(os.path.join(nom_fichier,'Utils'),os.path.join(os.path.join(nom_fichier,'Correction'),'Utils')) for fichier in fichiers: shutil.copy(fichier,os.path.join(nom_fichier,'Correction')) + + click.secho(f"Le dossier LaTeX {nom_fichier} a été crée !", fg="red")