Skip to content

Commit

Permalink
[Version 0.3.0+d13] Major bug fix
Browse files Browse the repository at this point in the history
- Fixed a critical bug that would prevent CCA from working
  • Loading branch information
ispingos committed Jul 24, 2021
1 parent d3d012f commit c55ee46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytheas/pytheas.py
Expand Up @@ -49,8 +49,8 @@

global _PYTHEAS_VERSION
global _PYTHEAS_VERDATE
_PYTHEAS_VERSION = "0.3.0+d12"
_PYTHEAS_VERDATE = "17/07/2021"
_PYTHEAS_VERSION = "0.3.0+d13"
_PYTHEAS_VERDATE = "24/07/2021"

#-- intro
print('~~~ STARTING PYTHEAS v.%s (%s) ~~~' % (_PYTHEAS_VERSION, _PYTHEAS_VERDATE))
Expand Down Expand Up @@ -239,7 +239,7 @@ def __init__(self):
self.tpCNF = parsers.parseTaupCnf(os.path.join(_DIR_CWD, 'etc', 'options', 'taup.cnf'))
self.gradeCNF = parsers.parseGradeCnf(os.path.join(_DIR_CWD, 'etc', 'options', 'grading.cnf'))
self.filterCNF = parsers.ParseFilterCnf(os.path.join(_DIR_CWD, 'etc', 'options', 'filters.cnf'))
self.cli_settings_path = os.path.join(self.cli_settings_dir, 'cca_settings_c{:d}.bin'.format(1))
self.cli_settings_path = os.path.join(self.cli_settings_dir, 'cca_settings_c%.0f.bin')
logging.info(f'Attempting to get previous settings from {self.cli_settings_path}')
try:
self.cca_settings = pk.load(open(self.cli_settings_path, 'rb'))
Expand Down

0 comments on commit c55ee46

Please sign in to comment.