aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/intex/intex_scenarios.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/intex/intex_scenarios.py b/python/intex/intex_scenarios.py
index 1348cdf9..d28ec5cb 100644
--- a/python/intex/intex_scenarios.py
+++ b/python/intex/intex_scenarios.py
@@ -35,7 +35,7 @@ def get_reinv_assets(conn, dealname, workdate):
with conn.cursor() as c:
c.execute(sqlstr, (dealname, workdate))
for line in c:
- d[line['issuername']] = (line['fixedorfloat'], line['liborfloor'])
+ d[line.issuername] = (line.fixedorfloat, line.liborfloor)
conn.commit()
return d