Commit d1ec1695 authored by delanoe's avatar delanoe

[FIX BDD] Bug column size.

parent 64be535e
......@@ -11,7 +11,7 @@ def _nodes_hyperdata_generator(corpus):
"""
for document in corpus.children(typename='DOCUMENT'):
for keyname, key in INDEXED_HYPERDATA.items():
if keyname in document.hyperdata:
if keyname in document.hyperdata and keyname not in ['abstract', 'title']:
values = key['convert_to_db'](document.hyperdata[keyname])
if not isinstance(values, list):
values = [values]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment