Skip to content

Commit

Permalink
fix previous commit to divide by correct variable
Browse files Browse the repository at this point in the history
  • Loading branch information
briangow committed Aug 23, 2024
1 parent cf2b0e4 commit 7786573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions physionet-django/console/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2537,8 +2537,8 @@ def clean_html(html_content):
project.access_policy,
project.license,
project.dua,
DUASignature.objects.filter(project=project.id).count() / 1000000,
project.main_storage_size,
DUASignature.objects.filter(project=project.id).count(),
project.main_storage_size / 1000000,
project.project_home_page,
clean_html(project.ethics_statement),
', '.join(str(author.id) for author in authors if author.is_corresponding),
Expand Down

0 comments on commit 7786573

Please sign in to comment.