From e92d38f1a8dc24827444e8a2f43d568fd2587305 Mon Sep 17 00:00:00 2001 From: Renaud Barate Date: Thu, 26 May 2011 08:02:32 +0000 Subject: [PATCH] Fix bug with truth testing test on appli (with PyQt 4.8) --- Ihm/I_JDC.py | 4 ++-- Noyau/N_JDC.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ihm/I_JDC.py b/Ihm/I_JDC.py index 600e8d0a..a4e2930e 100644 --- a/Ihm/I_JDC.py +++ b/Ihm/I_JDC.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# -*- coding: iso-8859-1 -*- # CONFIGURATION MANAGEMENT OF EDF VERSION # ====================================================================== # COPYRIGHT (C) 1991 - 2002 EDF R&D WWW.CODE-ASTER.ORG @@ -852,7 +852,7 @@ class JDC(I_OBJECT.OBJECT): Retourne le nom du fichier correspondant à un numero d'unité logique (entier) ainsi que le source contenu dans le fichier """ - if self.appli : + if self.appli is not None: # Si le JDC est relié à une application maitre, on délègue la recherche file,text= self.appli.get_file(unite,fic_origine) else: diff --git a/Noyau/N_JDC.py b/Noyau/N_JDC.py index 55dc6c18..a5b37c4a 100644 --- a/Noyau/N_JDC.py +++ b/Noyau/N_JDC.py @@ -387,7 +387,7 @@ Causes possibles : Retourne le nom du fichier correspondant à un numero d'unité logique (entier) ainsi que le source contenu dans le fichier """ - if self.appli : + if self.appli is not None: # Si le JDC est relié à une application maitre, on délègue la recherche file,text= self.appli.get_file(unite,fic_origine) else: -- 2.39.2