From 165bf47291602af149ce0b7942742468702a9ed0 Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Sun, 3 May 2026 01:03:45 +0200 Subject: [PATCH] Revert "ci: print homepage exception in staging template debug" This reverts commit 9624eec7351409dd17155c9ce8549d05ecccf2ea. --- scripts/run_remote_multilingual_audit.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scripts/run_remote_multilingual_audit.sh b/scripts/run_remote_multilingual_audit.sh index f613c72..d90a633 100755 --- a/scripts/run_remote_multilingual_audit.sh +++ b/scripts/run_remote_multilingual_audit.sh @@ -16,10 +16,8 @@ trap 'rm -f "$TMP_FILE" "$TMP_DEBUG"' EXIT REMOTE_DEBUG_CMD="cd '${STAGING_AUDIT_PROJECT_DIR}' && '${STAGING_AUDIT_MANAGE}' shell -c \"\ from django.template.loader import get_template; \ -from django.test import Client; \ import pathlib; \ import os; \ -import traceback; \ import mandelstudio; \ print('DJANGO_SETTINGS_MODULE=' + os.environ.get('DJANGO_SETTINGS_MODULE','')); \ troot = pathlib.Path(mandelstudio.__file__).resolve().parent; \ @@ -32,14 +30,6 @@ t1=get_template('carbasa/headers/header.html'); \ t2=get_template('engine/pages/base_home_page.html'); \ print('carbasa/headers/header.html -> ' + getattr(getattr(t1,'origin',None),'name','(no origin)')); \ print('engine/pages/base_home_page.html -> ' + getattr(getattr(t2,'origin',None),'name','(no origin)')); \ -try: \ - c=Client(); \ - r=c.get('/'); \ - print('debug_home_status=' + str(r.status_code)); \ -except Exception as exc: \ - print('debug_home_status=EXC'); \ - print('debug_home_exc=' + repr(exc)); \ - traceback.print_exc(); \ \"" REMOTE_CMD="cd '${STAGING_AUDIT_PROJECT_DIR}' && '${STAGING_AUDIT_MANAGE}' audit_locales --format=json"