]> git.phdru.name Git - bookmarks_db.git/blobdiff - Robots/bkmk_robot_base.py
Style: Fix flake8 E127 continuation line over-indented for visual indent
[bookmarks_db.git] / Robots / bkmk_robot_base.py
index 728fe46f557d6084e56ed5466f15769ef86401b8..e41dc408545eab72c1941ff735121ee6d43d3a0c 100644 (file)
@@ -5,7 +5,7 @@ This file is a part of Bookmarks database and Internet robot.
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['robot_base', 'get_error']
@@ -172,12 +172,12 @@ class robot_base(Robot):
                             else:
                                 content_type = icon_headers["Content-Type"]
                                 if content_type.startswith("application/") \
-                                      or content_type.startswith("image/") \
-                                      or content_type.startswith("text/plain"):
+                                   or content_type.startswith("image/") \
+                                   or content_type.startswith("text/plain"):
                                     bookmark.icon_href = icon_url
                                     self.log("   got icon       : %s" % content_type)
                                     if content_type.startswith("application/") \
-                                          or content_type.startswith("text/plain"):
+                                       or content_type.startswith("text/plain"):
                                         self.log("   non-image content type, assume x-icon")
                                         content_type = 'image/x-icon'
                                     bookmark.icon = "data:%s;base64,%s" % (content_type, b64encode(icon_data))