We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924b433 commit e33689bCopy full SHA for e33689b
pandas/core/reshape/merge.py
@@ -1263,8 +1263,8 @@ def _get_merge_keys(self):
1263
else:
1264
lt = left_join_keys[-1]
1265
1266
- msg = "incompatible tolerance, must be compat " \
1267
- "with type {0}".format(type(lt))
+ msg = "incompatible tolerance {0}, must be compat " \
+ "with type {1}".format(type(tolerance), lt.dtype)
1268
1269
if is_datetime64_dtype(lt) or is_datetime64tz_dtype(lt):
1270
if not isinstance(self.tolerance, Timedelta):
0 commit comments