diff --git a/pandas_datareader/google/quotes.py b/pandas_datareader/google/quotes.py index bedf902c..416cdc23 100644 --- a/pandas_datareader/google/quotes.py +++ b/pandas_datareader/google/quotes.py @@ -28,7 +28,7 @@ def _read_lines(self, out): buffer = out.read() m = re.search('// ', buffer) result = json.loads(buffer[m.start() + len('// '):]) - return pd.DataFrame([[float(x['cp']), float(x['l']), + return pd.DataFrame([[float(x['cp']), float(x['l'].replace(',', '')), np.datetime64(parse(x['lt']).isoformat())] for x in result], columns=['change_pct', 'last', 'time'],