Skip to content

Commit 7af213d

Browse files
committed
Fix unmatched quotes (0.2.39 regression)
1 parent 0493373 commit 7af213d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yfinance/scrapers/history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ def _fix_bad_stock_splits(self, df, interval, tz_exchange):
12041204
logger.debug('price-repair-split: No splits in data')
12051205
return df
12061206

1207-
logger.debug(f'price-repair-split: Splits: {str(df['Stock Splits'][split_f].to_dict())}')
1207+
logger.debug(f'price-repair-split: Splits: {str(df["Stock Splits"][split_f].to_dict())}')
12081208

12091209
if 'Repaired?' not in df.columns:
12101210
df['Repaired?'] = False

0 commit comments

Comments
 (0)