diff --git a/stratus1/src/stratus/st_net.py b/stratus1/src/stratus/st_net.py index d259f572..ea05c782 100644 --- a/stratus1/src/stratus/st_net.py +++ b/stratus1/src/stratus/st_net.py @@ -876,7 +876,7 @@ class net : # Error : if re.search ( "[A-Z]", nom ) : print "[Stratus Warning] : Upper case letters are not supported, the name", nom, "is lowered." - nom.lower () + nom = nom.lower () if re.search ( " ", nom ) : chaine = re.search ( "st_net\.(.*)", str ( self.__class__ ) ) classe = chaine.group(1)