aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/load_bloomberg_data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/load_bloomberg_data.py b/python/load_bloomberg_data.py
index a6109509..b7df0433 100644
--- a/python/load_bloomberg_data.py
+++ b/python/load_bloomberg_data.py
@@ -19,7 +19,7 @@ root = os.path.join(root, "data", "bloomberg")
for filename in os.listdir(root):
with conn.cursor() as c:
c.execute("select cusip, pricingdate from historical_bloomberg_corp(%s)", (date.today(),))
- corpcusips = dict(c)
+ corpcusips = dict(c)
with open( os.path.join(root, filename), "r") as fh:
dr = csv.DictReader(fh)
if "datacorp" in filename: