Skip to content

Commit

Permalink
Merge pull request #53 from lu-kas/fix_fds_version
Browse files Browse the repository at this point in the history
fixed keyword for FDS version
  • Loading branch information
lu-kas authored Dec 14, 2022
2 parents e26beb7 + 33c5873 commit 036d6d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fdsreader/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("fdsreader", 1, 9, 2)
__version__ = Version("fdsreader", 1, 9, 3)
__all__ = ["__version__"]
2 changes: 2 additions & 0 deletions fdsreader/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ def parse_smv_file(self):
keyword = line.strip()
if keyword == "VERSION":
self.fds_version = smv_file.readline().strip()
elif keyword == "FDSVERSION":
self.fds_version = smv_file.readline().strip()
elif keyword == "CHID":
self.chid = smv_file.readline().strip()
elif keyword == "CSVF":
Expand Down

0 comments on commit 036d6d0

Please sign in to comment.