From 92bca9a4f64916ee2060d18f172f3c37e9b8f8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20C=C3=A1ceres?= Date: Wed, 19 Nov 2025 12:42:09 +0100 Subject: [PATCH] Show diff without whitespaces --- OpenBench/templatetags/mytags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenBench/templatetags/mytags.py b/OpenBench/templatetags/mytags.py index 2eb0edf2..c667c0ba 100644 --- a/OpenBench/templatetags/mytags.py +++ b/OpenBench/templatetags/mytags.py @@ -56,7 +56,7 @@ def gitDiffLink(test): return OpenBench.utils.path_join(repo, 'compare', test.dev.sha[:8]) return OpenBench.utils.path_join(repo, 'compare', - '{0}..{1}'.format( test.base.sha[:8], test.dev.sha[:8])) + '{0}..{1}?w=1'.format( test.base.sha[:8], test.dev.sha[:8])) def shortStatBlock(test):