correct bug in lower of net's name

This commit is contained in:
Roselyne Chotin 2012-08-10 15:00:08 +00:00
parent f2849cb25a
commit 1917f64d56
1 changed files with 1 additions and 1 deletions

View File

@ -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)