Fix crucial assignment error, we had only descriptions after this!

This commit is contained in:
benjamin melançon 2021-06-01 20:33:48 -04:00
parent 7387893e57
commit 020da15372

View file

@ -150,7 +150,7 @@ for preferred, alternatives in replacement_project_names.items():
# If a compound project was specified, break that out into a sub-project (in
# Harvest, we use Task, which is really task type, for this.
timelog['subproject'] = (np.where(timelog['project'].str.contains(': '), timelog['project'].str.split(': ', 1).str[1], None))
timelog['project'] = (np.where(timelog['project'].str.contains(': '), timelog['description'].str.split(': ', 1).str[0], timelog['description']))
timelog['project'] = (np.where(timelog['project'].str.contains(': '), timelog['description'].str.split(': ', 1).str[0], timelog['project']))
# Condense duplicate entries by date, summing the minutes spent, and listing
# the first started and last recorded times for each task.