From 971782b2bef56b9ae549273a368cfbce694a3f40 Mon Sep 17 00:00:00 2001 From: Brian Gow Date: Wed, 21 Aug 2024 12:32:58 -0400 Subject: [PATCH] remove primary key from download published authors csv --- physionet-django/console/views.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/physionet-django/console/views.py b/physionet-django/console/views.py index f66d80879..7656f2c53 100644 --- a/physionet-django/console/views.py +++ b/physionet-django/console/views.py @@ -2573,8 +2573,7 @@ def get_published_authors(authors): "approval_datetime", "is_corresponding", "is_submitting", - "display_order", - "primary_key" + "display_order" ] yield csv_header @@ -2591,8 +2590,7 @@ def get_published_authors(authors): author.approval_datetime, author.is_corresponding, author.is_submitting, - author.display_order, - author.pk + author.display_order ]