From a72be27982ba0adde7614bfa070a84d9951d39d9 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 15 Mar 2024 12:01:09 +0100 Subject: [PATCH] more robust channel title building --- tubearchivist/home/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/home/views.py b/tubearchivist/home/views.py index e87cc27..69c16ad 100644 --- a/tubearchivist/home/views.py +++ b/tubearchivist/home/views.py @@ -524,7 +524,7 @@ class ChannelIdView(ChannelIdBaseView): self.context.update( { - "title": "Channel: " + channel_name, + "title": f"Channel: {channel_name}", "channel_info": channel_info, } )