diff --git a/docs/pyerrors/obs.html b/docs/pyerrors/obs.html
index fd75cbc8..d65897e6 100644
--- a/docs/pyerrors/obs.html
+++ b/docs/pyerrors/obs.html
@@ -1605,7 +1605,7 @@
1401 """
1402
1403 if sorted(obs_a.names) != sorted(obs_b.names):
-1404 raise Exception('Ensembles do not fit')
+1404 raise Exception(f"Ensembles do not fit {set(sorted(obs_a.names)) ^ set(sorted(obs_b.names))}")
1405 if len(obs_a.cov_names) or len(obs_b.cov_names):
1406 raise Exception('Error: Not possible to correlate Obs that contain covobs!')
1407 for name in obs_a.names:
@@ -4517,7 +4517,7 @@ on the configurations in obs[i].idl. Default False.
1402 """
1403
1404 if sorted(obs_a.names) != sorted(obs_b.names):
-1405 raise Exception('Ensembles do not fit')
+1405 raise Exception(f"Ensembles do not fit {set(sorted(obs_a.names)) ^ set(sorted(obs_b.names))}")
1406 if len(obs_a.cov_names) or len(obs_b.cov_names):
1407 raise Exception('Error: Not possible to correlate Obs that contain covobs!')
1408 for name in obs_a.names: