From 45a911e329b789378b532184d0226dd618da6282 Mon Sep 17 00:00:00 2001 From: destinyk <destiny.kuehn@student.nmt.edu> Date: Thu, 3 Oct 2024 14:15:02 -0600 Subject: [PATCH] update error msg for variable record length --- mseedpeek/mseedpeek.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mseedpeek/mseedpeek.py b/mseedpeek/mseedpeek.py index 9f76942..06a7463 100644 --- a/mseedpeek/mseedpeek.py +++ b/mseedpeek/mseedpeek.py @@ -895,8 +895,10 @@ class MainWindow(QWidget): if odd_size: warn = ("ERROR: File size is not an " " integer number of block size (" + - str(blksize) + "). \n\t File: " + - fullname) + str(blksize) + ").") + warn += " Header reading may not work." + warn += " To fix variable record length, use fixhdr." + warn += f"\n\t File: {fullname}" print(warn) rw_error += 1 continue -- GitLab