Fix a change committed by mistake (fortunately in a not used code) in cff2583f

This commit is contained in:
jean-pierre charras 2023-08-10 16:27:32 +02:00
parent cff2583f15
commit e82f9e0305
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ bool FIELD_VALIDATOR::Validate( wxWindow* aParent )
else if( excludeChar == wxT( " " ) )
badCharsFound.Add( _( "space" ) );
else
badCharsFound.Add( wxString::Format( wxT( "'%c'" ), excludeChar ) );
badCharsFound.Add( wxString::Format( wxT( "'%s'" ), excludeChar ) );
}
}
#endif