From b73ffdee50c8e29a9fe84628416321e0a42a9fb1 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Tue, 10 Feb 2026 19:14:13 +0000 Subject: [PATCH] format right justify --- core/views/expo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/views/expo.py b/core/views/expo.py index c51ee5d1..a496aa34 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -341,7 +341,7 @@ def expopage(request, path): content_type = getmimetype(path) return HttpResponse(content=content, content_type=content_type) except FileNotFoundError as e: - message = f" ! - 404 FileNotFound REMOTE_ADDR: {meta['REMOTE_ADDR']} [{stamp}] '/{path}'" + message = f" ! - 404 FileNotFound REMOTE_ADDR: {meta['REMOTE_ADDR']:>15} [{stamp}] '/{path}'" DataIssue.objects.create(parser="view404", message=message) return render(request, "pagenotfound.html", {"path": path}, status=404) except Exception as e: