aboutsummaryrefslogtreecommitdiffstats
path: root/python/clo_universe.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/clo_universe.py')
-rw-r--r--python/clo_universe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/clo_universe.py b/python/clo_universe.py
index dea9adc2..d794ee2f 100644
--- a/python/clo_universe.py
+++ b/python/clo_universe.py
@@ -28,7 +28,7 @@ def upload_data(workdate, conn, cursor):
dr = csv.DictReader(fh, dialect='excel-tab')
data = []
for line in dr:
- if line['Deal Name'] == 'Unknown Security':
+ if not line ['Deal Name'] or (line['Deal Name'] == 'Unknown Security'):
continue
if not line['Latest Update']:
break