From 14060acbfbc2a16281c726e47b2ea4a63df90d3a Mon Sep 17 00:00:00 2001 From: Jimmy Callin Date: Mon, 12 Aug 2019 14:28:20 +0200 Subject: [PATCH] Added missing space to error description --- pandas/io/feather_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/feather_format.py b/pandas/io/feather_format.py index 6fe22f14c2c5b..25a6db675265d 100644 --- a/pandas/io/feather_format.py +++ b/pandas/io/feather_format.py @@ -39,7 +39,7 @@ def to_feather(df, path): if not isinstance(df.index, Int64Index): raise ValueError( "feather does not support serializing {} " - "for the index; you can .reset_index()" + "for the index; you can .reset_index() " "to make the index into column(s)".format(type(df.index)) )