From 2c3f171d653b91e2536a9829866a932f66f4f32c Mon Sep 17 00:00:00 2001
From: bug-assassin <7788433+bug-assassin@users.noreply.github.com>
Date: Tue, 26 Dec 2023 23:52:06 -0500
Subject: [PATCH] Fix python 3.5 linting issue
---
gallery_dl/extractor/bato.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gallery_dl/extractor/bato.py b/gallery_dl/extractor/bato.py
index c885f27b..87d6c3c6 100644
--- a/gallery_dl/extractor/bato.py
+++ b/gallery_dl/extractor/bato.py
@@ -49,8 +49,8 @@ class BatoChapterExtractor(BatoBase, ChapterExtractor):
r"Chapter *([\d\.]+)", info)
manga, volume, chapter = match.groups() if match else ("", "", info)
chapter, sep, minor = chapter.partition(".")
- title_container = text.extr(page, f'")
- title = text.extr(title_container, "", "")
+ title_section = text.extr(page, '")
+ title = text.extr(title_section, "", "")
return {
"manga" : text.unescape(manga),