Skip to content

Commit

Permalink
Merge pull request #101 from krischer/gse2_ignore_bad_checksum
Browse files Browse the repository at this point in the history
Allow reading/indexing of GSE2 files with bad checksum
  • Loading branch information
megies authored Jul 14, 2020
2 parents ed71678 + 849293d commit 0dbbf9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jane/waveforms/process_waveforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def process_file(filename):
# Step 2: Read the file and perform a couple of sanity checks. Delete an
# eventually existing file.
try:
stream = read(filename)
stream = read(filename, verify_chksum=False)
except:
# Delete if invalid file.
if file is not None:
Expand Down

0 comments on commit 0dbbf9a

Please sign in to comment.