From 5b7eca81da6f9f8afe54dcb5b5159f9bc5820542 Mon Sep 17 00:00:00 2001 From: eficas <> Date: Fri, 3 Dec 2004 15:31:10 +0000 Subject: [PATCH] Pn : correction de bug --- convert/parseur_python.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/convert/parseur_python.py b/convert/parseur_python.py index e7704a64..789f2a1c 100644 --- a/convert/parseur_python.py +++ b/convert/parseur_python.py @@ -309,7 +309,10 @@ class PARSEUR_PYTHON: commande_courante = None else: #--> poursuite d'une affectation - affectation_courante.append_text(ligne) + # PN -- pour Empecher une erreur pas propre + if affectation_courante != None : + affectation_courante.append_text(ligne) + #affectation_courante.append_text(ligne) def get_texte(self): -- 2.39.2