aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/load_intex_collateral.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/load_intex_collateral.py b/python/load_intex_collateral.py
index a16430bc..6c887b03 100644
--- a/python/load_intex_collateral.py
+++ b/python/load_intex_collateral.py
@@ -104,7 +104,7 @@ for dealname in os.listdir(os.path.join(root, "Collaterals_" + workdate)):
# make sure the loan name is unique by tagging it
row[0] = row[0] + "_tag_" + str(tag)
tag = tag+1
- cursor.execute(sqlstr, (dealname, updatedate) + tuple(row))
+ cursor.execute(sqlstr, (dealname, updatedate) + tuple(row))
conn.commit()