From 7db87bbfc12f5c7ddc1740b7311a7825faf07cad Mon Sep 17 00:00:00 2001 From: "pascale.noyret" Date: Wed, 27 May 2015 15:19:15 +0200 Subject: [PATCH] necessaire pour Ada --- Noyau/N_VALIDATOR.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Noyau/N_VALIDATOR.py b/Noyau/N_VALIDATOR.py index b4dd763a..cfc3a389 100644 --- a/Noyau/N_VALIDATOR.py +++ b/Noyau/N_VALIDATOR.py @@ -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 -- 2.39.2