Skip to content

Commit

Permalink
Fix two typos that caused serious bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlis committed Dec 16, 2023
1 parent 83af3d5 commit 667629e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/mspasspy/db/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ def read_data(
kill_me = False
break
if kill_me:
ensemble.kil()
ensemble.kill()

else:
# Default constructed container assumed marked dead
Expand Down Expand Up @@ -3887,7 +3887,7 @@ def _sync_metadata_before_update(mspass_object):
# This will need to be modified if we ever expand time types beyond two
if mspass_object.time_is_relative():
if mspass_object.shifted():
mspass_object["startime_shift"] = mspass_object.time_reference()
mspass_object["starttime_shift"] = mspass_object.time_reference()
mspass_object["utc_convertible"] = True
else:
mspass_object["utc_convertible"] = False
Expand Down

0 comments on commit 667629e

Please sign in to comment.