From 3f74f1c4dd37b09be8393e497a8c5a5a64a0256b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 2 Aug 2023 13:07:48 +0300 Subject: [PATCH] Replace 404 link with archive --- src/tablib/formats/_xlsx.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/tablib/formats/_xlsx.py b/src/tablib/formats/_xlsx.py index f1f260cd..966ba5c8 100644 --- a/src/tablib/formats/_xlsx.py +++ b/src/tablib/formats/_xlsx.py @@ -40,9 +40,10 @@ def export_set(cls, dataset, freeze_panes=True, invalid_char_subst="-", escape=F If ``freeze_panes`` is True, Export will freeze panes only after first line. - If ``dataset.title`` contains characters which are considered invalid for an XLSX file - sheet name (http://www.excelcodex.com/2012/06/worksheets-naming-conventions/), they will - be replaced with ``invalid_char_subst``. + If ``dataset.title`` contains characters which are + considered invalid for an XLSX file sheet name + (https://web.archive.org/web/20230323081941/https://www.excelcodex.com/2012/06/worksheets-naming-conventions/), + they will be replaced with ``invalid_char_subst``. If ``escape`` is True, formulae will have the leading '=' character removed. This is a security measure to prevent formulae from executing by default