From: SourceForge.net <no...@so...> - 2007-08-17 15:42:01
|
Bugs item #1775665, was opened at 2007-08-16 17:57 Message generated for change (Settings changed) made by langner You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=819222&aid=1775665&group_id=161285 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: Parsers Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Adam Tenderholt (atenderholt) Assigned to: Nobody/Anonymous (nobody) Summary: empty mosyms Initial Comment: I have a calculation that doesn't have mosyms parsed at all. I believe it is because I used SCF=QC and it gives a section that starts with 'Orbital Symmetries in SymMO:' before the 'Orbital Symmetries:' section. I still need to generate an appropriate test file. Quick workaround is as follows. On line 328, change if line[1:19] == 'Orbital symmetries' and not hasattr(self, "mosyms"): to if line[1:20] == 'Orbital symmetries:' and not hasattr(self, "mosyms"): Basically this just ignores the incorrect section by checking to make sure the Orbital symmetries is followed immediately by a colon. Adam ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=819222&aid=1775665&group_id=161285 |