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 9b169bc commit b345e54Copy full SHA for b345e54
pandas_datareader/av/__init__.py
@@ -78,7 +78,10 @@ def _read_lines(self, out):
78
".".format(self.symbols)
79
)
80
else:
81
- raise RemoteDataError(out)
+ raise RemoteDataError(
82
+ " Their was an issue from the data vendor "
83
+ "side, here is their response: {}".format(out)
84
+ )
85
df = df[sorted(df.columns)]
86
df.columns = [id[3:] for id in df.columns]
87
return df
0 commit comments