Skip to content

Commit

Permalink
Merge pull request #848 from ghutchis/fix-reading-log-files
Browse files Browse the repository at this point in the history
Fix #827 - reading generic file formats with Open Babel
  • Loading branch information
ghutchis authored Mar 22, 2022
2 parents afd6b3a + 07ba43f commit d5d15b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions avogadro/qtplugins/openbabel/openbabel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ OpenBabel::OpenBabel(QObject* p)
a->setEnabled(false);
} else {
*/
qDebug() << OBProcess().obabelExecutable() << " found: " << info;
qDebug() << OBProcess().obabelExecutable() << " found: " << info;
// }
}

Expand Down Expand Up @@ -130,8 +130,8 @@ QList<Io::FileFormat*> OpenBabel::fileFormats() const
// These can only be read directly from file:
QList<QString> multifileFormatDescriptions;
multifileFormatDescriptions << "VASP format";
multifileFormatDescriptions << "Gaussian Output"; // Issue #571
multifileFormatDescriptions << "Generic Output";
multifileFormatDescriptions << "Gaussian Output"; // Issue #571
multifileFormatDescriptions << "Generic Output file format"; // #571 and 827

foreach (const QString& qdesc, formatDescriptions) {
mapDesc = qdesc.toStdString();
Expand Down

0 comments on commit d5d15b1

Please sign in to comment.