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.
2 parents 0845b4f + b345e54 commit a6c0271Copy full SHA for a6c0271
pandas_datareader/av/__init__.py
@@ -78,7 +78,10 @@ def _read_lines(self, out):
78
".".format(self.symbols)
79
)
80
else:
81
- raise RemoteDataError()
+ 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