mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Change message to indicate removeHs might be the culprit
This commit is contained in:
@@ -134,7 +134,9 @@ void applyMolListProp(ROMol &mol, const std::string &pn,
|
||||
if(tokens.size() - first_token != nItems) {
|
||||
BOOST_LOG(rdWarningLog) << "Property list " << pn << " has incompatible size, "
|
||||
<< tokens.size() << " elements found; expecting "
|
||||
<< nItems << ". Ignoring it." << std::endl;
|
||||
<< nItems << ". Ignoring it." << std::endl <<
|
||||
"If hydrogens were removed during parsing, consider keeping them." <<
|
||||
std::endl;
|
||||
return;
|
||||
}
|
||||
for (size_t i = first_token; i < tokens.size(); ++i) {
|
||||
|
||||
Reference in New Issue
Block a user