aboutsummaryrefslogtreecommitdiffstats
path: root/python/intex
diff options
context:
space:
mode:
Diffstat (limited to 'python/intex')
-rw-r--r--python/intex/load_indicative.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/intex/load_indicative.py b/python/intex/load_indicative.py
index 6feeb0ae..89e87e1e 100644
--- a/python/intex/load_indicative.py
+++ b/python/intex/load_indicative.py
@@ -124,7 +124,7 @@ def upload_deal_data(conn, filename):
if "Paid Down" in line["Latest Update"]:
line["Paid Down"] = re.sub("Paid Down: ","", line["Latest Update"])
line["Latest Update"] = line["Paid Down"]
- for field in ["Deal Issue Date", "Deal Termination Date", "Reinv End Date", \
+ for field in ["Deal Closing Date", "Deal Termination Date", "Reinv End Date", \
"Latest Update", "Pay Day", "Deal First Pay Date", "Paid Down"]:
if line[field]:
try:
@@ -146,7 +146,7 @@ def upload_deal_data(conn, filename):
line[key] = sanitize_float(line[key])
sqlstr = "INSERT INTO deal_indicative VALUES( %(Deal/Tranche ID)s, %(Deal Name)s, " \
- "%(Collateral Manager)s, %(Deal Issue Date)s, %(Deal Termination Date)s, " \
+ "%(Collateral Manager)s, %(Deal Closing Date)s, %(Deal Termination Date)s, " \
"%(Pay Day)s, %(Reinv End Date)s, %(Deal First Pay Date)s, %(Orig Deal Bal)s, " \
"%(Tranche Orig Bal)s, %(Deal CUSIP List)s, %(Paid Down)s)"
else: