From c0b517e5fe594050ad7ab6c8815089ea352ff5ef Mon Sep 17 00:00:00 2001 From: "a.gorbunov" Date: Mon, 20 Jan 2020 11:04:02 +0000 Subject: [PATCH] find image regexp --- apps/utils/methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/utils/methods.py b/apps/utils/methods.py index a8f5171e..58cc3f52 100644 --- a/apps/utils/methods.py +++ b/apps/utils/methods.py @@ -207,7 +207,7 @@ def section_name_into_index_name(section_name: str): def get_url_images_in_text(text): """Find images urls in text""" - return re.findall(r'\', text) + return re.findall(r'\', text) def get_image_meta_by_url(url) -> (int, int, int):