aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/bbg_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/bbg_helpers.py b/python/bbg_helpers.py
index 9cd586f6..94675539 100644
--- a/python/bbg_helpers.py
+++ b/python/bbg_helpers.py
@@ -84,7 +84,7 @@ def process_reference_msg(msg):
if not field.isValid():
logger.info("Invalid field: {0}".format(str(field)))
elif field.isArray():
- row[str(field.name())] = field_array_to_df(field) #to convert dates to timestamps
+ row[str(field.name())] = field_array_todf(field) #to convert dates to timestamps
else:
row[str(field.name())] = get_pythonvalue(field)
data[securityName] = row