diff options
Diffstat (limited to 'python/cusip_universe.py')
| -rw-r--r-- | python/cusip_universe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/cusip_universe.py b/python/cusip_universe.py index 4dc9c998..91d9aa4f 100644 --- a/python/cusip_universe.py +++ b/python/cusip_universe.py @@ -38,7 +38,7 @@ def upload_data(workdate, conn, cursor): continue line["dealname"] = line["dealname"].lower() dealname = line['dealname'] - line = {k: convertToNone(v) for k, v in line.iteritems()} + line = {k: convertToNone(v) for k, v in line.items()} if dealname not in dealupdate: cursor.execute("SELECT \"Latest Update\" FROM clo_universe " \ "WHERE dealname = %s ORDER BY \"Latest Update\" DESC", (dealname,)) |
