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 d8129b4 commit 8168b90Copy full SHA for 8168b90
pandas/core/reshape/merge.py
@@ -1268,8 +1268,8 @@ def _get_merge_keys(self):
1268
else:
1269
lt = left_join_keys[-1]
1270
1271
- msg = "incompatible tolerance, must be compat " \
1272
- "with type {lt}".format(lt=type(lt))
+ msg = "incompatible tolerance {0}, must be compat " \
+ "with type {1}".format(type(tolerance), lt.dtype)
1273
1274
if is_datetime64_dtype(lt) or is_datetime64tz_dtype(lt):
1275
if not isinstance(self.tolerance, Timedelta):
0 commit comments