Skip to content

Commit 318386b

Browse files
Correct EcondbReader's API URL format
1 parent 3e14574 commit 318386b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/econdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def url(self):
1818
if not isinstance(self.symbols, compat.string_types):
1919
raise ValueError('data name must be string')
2020

21-
return ('{0}?{1}&format=json&page_size=500&expand=meta'
21+
return ('{0}?{1}&format=json&page_size=500&expand=both'
2222
.format(self._URL, self.symbols))
2323

2424
def read(self):

0 commit comments

Comments
 (0)