From: Renaud Barate Date: Thu, 26 May 2011 08:02:32 +0000 (+0000) Subject: Fix bug with truth testing test on appli (with PyQt 4.8) X-Git-Tag: LOGILAB~315 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e92d38f1a8dc24827444e8a2f43d568fd2587305;p=tools%2Feficas.git Fix bug with truth testing test on appli (with PyQt 4.8) --- 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: