From 753a9d3a2464eac817f0db98a233b320558faa99 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 19 Jul 2022 07:43:09 +0530 Subject: [PATCH] Use correct binary descriptive names on download.calibre-ebook.com --- setup/hosting.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup/hosting.py b/setup/hosting.py index 40d065cc94..f352a5b130 100644 --- a/setup/hosting.py +++ b/setup/hosting.py @@ -341,7 +341,6 @@ def generate_index(): # {{{ windows = [ '
  • {1}
  • '.format( x, 'Windows 64-bit Installer' - if '64bit' in x else 'Windows 32-bit Installer' ) for x in windows ] body.append( @@ -368,7 +367,7 @@ def generate_index(): # {{{ linux = [ '
  • {1}
  • '.format( x, 'Linux 64-bit binary' - if 'x86_64' in x else 'Linux 32-bit binary' + if 'x86_64' in x else 'Linux ARM 64-bit binary' ) for x in linux ] body.append(