From: Oleg Broytman Date: Sat, 2 Sep 2023 15:00:56 +0000 (+0300) Subject: Style: Fix flake8 E127 continuation line over-indented for visual indent X-Git-Tag: 5.0.0~95 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=cac6843d0987a11020e2ec606adccc95d89a5f71 Style: Fix flake8 E127 continuation line over-indented for visual indent --- diff --git a/Robots/bkmk_robot_base.py b/Robots/bkmk_robot_base.py index 728fe46..e41dc40 100644 --- a/Robots/bkmk_robot_base.py +++ b/Robots/bkmk_robot_base.py @@ -5,7 +5,7 @@ This file is a part of Bookmarks database and Internet robot. """ __author__ = "Oleg Broytman " -__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)) diff --git a/Storage/bkmk_stflad.py b/Storage/bkmk_stflad.py index a60b30a..5639772 100644 --- a/Storage/bkmk_stflad.py +++ b/Storage/bkmk_stflad.py @@ -6,7 +6,7 @@ This file is a part of Bookmarks database and Internet robot. """ __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design" +__copyright__ = "Copyright (C) 2000-2023 PhiloSoft Design" __license__ = "GNU GPL" __all__ = ['storage_flad'] @@ -55,8 +55,8 @@ IconURI: %s Icon: %s Charset: %s """ % (level+1, b.name, b.href, b.add_date, b.last_visit, b.last_modified, - b.keyword, b.comment.replace('\n', "\\n"), - b.icon_href or '', b.icon or '', b.charset or '')) + b.keyword, b.comment.replace('\n', "\\n"), + b.icon_href or '', b.icon or '', b.charset or '')) def ruler(self, r, level): self.outfile.write("\nLevel: %s\nRuler: YES\n" % (level+1)) diff --git a/check_urls.py b/check_urls.py index a7314f3..ae7fe83 100755 --- a/check_urls.py +++ b/check_urls.py @@ -9,7 +9,7 @@ import sys, os __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design" +__copyright__ = "Copyright (C) 2000-2023 PhiloSoft Design" __license__ = "GNU GPL" @@ -34,7 +34,7 @@ def run(): pass if report_stats: - print("Broytman check_urls, Copyright (C) 1997-2017 PhiloSoft Design") + print("Broytman check_urls, Copyright (C) 1997-2023 PhiloSoft Design") if args: sys.stderr.write("check_urls: too many arguments\n") @@ -108,7 +108,7 @@ def run(): if object.isBookmark: href = object.href if (href.startswith('place:') # Firefox SmartBookmarks - or '%s' in href): # Bookmark with keyword + or '%s' in href): # Bookmark with keyword log("Skipped %s" % href) continue