Skip to content

Commit

Permalink
#1390 only show date in person_created_at_date csv export
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsimpson committed Aug 12, 2024
1 parent b0f9d9c commit c7cb980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subscribie/blueprints/admin/export_subscribers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def export_subscribers():
if subscription.person is not None:
person = {
"person_created_at_date": subscription.person.created_at.strftime(
"%d-%m-%Y %H:%M"
"%d-%m-%Y"
), # noqa: E501
"person_created_at_time": subscription.person.created_at.strftime(
"%H:%M"
Expand Down

0 comments on commit c7cb980

Please sign in to comment.