From b6579971b350afc750bdbde1c2a7f4bc20e86fa0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 23 Aug 2014 01:07:36 +0530 Subject: [PATCH] Fix move to .txz for linux binaries causing links on the previous releases page for linux binaries not working --- setup/hosting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/hosting.py b/setup/hosting.py index ba7666a446..ef83e3b162 100644 --- a/setup/hosting.py +++ b/setup/hosting.py @@ -445,7 +445,7 @@ def generate_index(): # {{{ if osx: body.append('
Apple Mac
{1}
'.format( osx[0], 'OS X Disk Image (.dmg)')) - linux = [x for x in files if x.endswith('.txz')] + linux = [x for x in files if x.endswith('.txz') or x.endswith('tar.bz2')] if linux: linux = ['
  • {1}
  • '.format( x, 'Linux 64-bit binary' if 'x86_64' in x else 'Linux 32-bit binary')