Skip to content

Commit

Permalink
hotfix for downloading annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
tomolopolis committed Feb 13, 2023
1 parent a0e5c8b commit a6e45d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/api/api/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _retrieve_project_data(projects: QuerySet) -> Dict[str, List]:
out_ann['alternative'] = ann.alternative
out_ann['killed'] = ann.killed
out_ann['irrelevant'] = ann.irrelevant
out_ann['create_time'] = ann.create_time
out_ann['create_time'] = ann.create_time.strftime('%Y-%m-%d:%H:%M:%S')
out_ann['last_modified'] = ann.last_modified.strftime('%Y-%m-%d:%H:%M:%S')
out_ann['comment'] = ann.comment
out_ann['manually_created'] = ann.manually_created
Expand Down

0 comments on commit a6e45d1

Please sign in to comment.