log-search: Some Django log lines do not include hostname.

This commit is contained in:
Alex Vandiver 2022-05-04 17:33:13 -07:00 committed by Tim Abbott
parent fe17a4d6d0
commit e3a65b1528
1 changed files with 3 additions and 1 deletions

View File

@ -313,7 +313,9 @@ def print_line(
url = f"{BOLD}{match['path']}"
if filter_type != FilterType.HOSTNAME:
hostname = match["hostname"]
if not args.nginx:
if hostname is None:
hostname = "???.zulipchat.com"
elif not args.nginx:
if hostname == "root":
hostname = "zulip.com"
else: