From a90e0d9db5718088c0840f5bed7c4ddbabcfdd7e Mon Sep 17 00:00:00 2001 From: Nicholas Falco Date: Wed, 13 Nov 2019 09:57:45 -0800 Subject: [PATCH] Increase the maximum number of lines read by kef2ph5. In cases of very large kef files, the program would fail. --- ph5/utilities/kef2ph5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ph5/utilities/kef2ph5.py b/ph5/utilities/kef2ph5.py index dce1042e..8bb3a94b 100755 --- a/ph5/utilities/kef2ph5.py +++ b/ph5/utilities/kef2ph5.py @@ -82,7 +82,7 @@ def populateTables(): k.open() while True: - n = k.read(10000) + n = k.read(1000000) if n == 0: err = "Empty kef file." break