Skip to content
Snippets Groups Projects
Commit 27603444 authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler
Browse files

Fix AlgorithmException string in SqDistAlgorithm

As per discussion in geomag-algorithms issue #236, swap the "state" and "process"
strings in the AlgorithmException string.
parent 7ea6bbea
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ class SqDistAlgorithm(Algorithm):
# state not correct
raise AlgorithmException(
'Inconsistent SQDist algorithm state' +
' state(%s, %s, %s, %s) <> process(%s, %s, %s, %s)' %
' process(%s, %s, %s, %s) <> state(%s, %s, %s, %s)' %
(trace.stats.station,
trace.stats.channel,
trace.stats.delta,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment