summaryrefslogtreecommitdiff
path: root/pyspike/spike_distance.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyspike/spike_distance.py')
-rw-r--r--pyspike/spike_distance.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyspike/spike_distance.py b/pyspike/spike_distance.py
index 75b3b0e..499ab77 100644
--- a/pyspike/spike_distance.py
+++ b/pyspike/spike_distance.py
@@ -25,9 +25,9 @@ def spike_profile(spike_train1, spike_train2):
"""
# check whether the spike trains are defined for the same interval
assert spike_train1.t_start == spike_train2.t_start, \
- "Given spike trains seems not to have auxiliary spikes!"
+ "Given spike trains are not defined on the same interval!"
assert spike_train1.t_end == spike_train2.t_end, \
- "Given spike trains seems not to have auxiliary spikes!"
+ "Given spike trains are not defined on the same interval!"
# cython implementation
try: