Skip to content

Commit 5e562e5

Browse files
committed
Minor documentation changes
1 parent e475924 commit 5e562e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seismic/stream_processing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def assert_homogenous_stream(stream, funcname):
283283
expected_station = stream[0].stats.station
284284
expected_channel = stream[0].stats.channel
285285
assert np.all(np.array([(tr.stats.station == expected_station) for tr in stream])), \
286-
'Mixed station data incompatible with function {}'.format(funcname)
286+
'{}: mixed station data incompatible with function {}'.format(stream[0].stats, funcname)
287287
assert np.all(np.array([(tr.stats.channel == expected_channel) for tr in stream])), \
288-
'Mixed channel data incompatible with function {}'.format(funcname)
288+
'{}: mixed channel data incompatible with function {}'.format(stream[0].stats, funcname)
289289
# end func

0 commit comments

Comments
 (0)