Skip to content

Commit df2cace

Browse files
committed
Import subtitles from proposals
1 parent 4eef136 commit df2cace

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scheduler/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import csv
22
import pickle
3-
from datetime import datetime
43
from pathlib import Path
54
from pprint import pformat
65
import shutil
@@ -45,6 +44,7 @@ def import_proposals(resources):
4544
'demand': float(row.get('demand', 0)),
4645
'person': slugify(row['name']),
4746
'tags': [row['tag']] if row['tag'] != '' else [],
47+
'subtitle': row['subtitle'],
4848
'event_type': event_type})
4949
logger.debug(f'\nreources:\n{pformat(proposals)}')
5050
return proposals

0 commit comments

Comments
 (0)