]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
necessaire pour Ada
authorpascale.noyret <pascale.noyret@edf.fr>
Wed, 27 May 2015 13:19:15 +0000 (15:19 +0200)
committerpascale.noyret <pascale.noyret@edf.fr>
Wed, 27 May 2015 13:19:15 +0000 (15:19 +0200)
Noyau/N_VALIDATOR.py

index b4dd763a9b13230f91bb44f949241ddc81fab0a9..cfc3a3898810bffe06e5fc93f9fe0e7aed5edca8 100644 (file)
@@ -1702,7 +1702,9 @@ class FileExtVal(RegExpVal):
         self.ext = ext
         self.errormsg = u'"%%(value)s" n\'est pas un nom de fichier %(ext)s valide' % {
             "ext": ext}
-        RegExpVal.__init__(self, "^[\w\-]+\.%s$" % self.ext)
+        #RegExpVal.__init__(self, "^[\w\-]+\.%s$" % self.ext)
+        #PNPN Modif pour Adao
+        RegExpVal.__init__(self, "^[\S]+\.%s$" % self.ext
 
     def info(self):
         return u'Un nom de fichier se terminant par ".%s" est attendu.' % self.ext