]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fix(Robots/bkmk_robot_base): Add forgotten spaces in log
authorOleg Broytman <phd@phdru.name>
Sun, 3 Mar 2024 14:24:52 +0000 (17:24 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 3 Mar 2024 14:25:07 +0000 (17:25 +0300)
Robots/bkmk_robot_base.py

index e41b1a660574631354f77b44340a40efea7f285e..c71ce2207f366b46a2d35c07c3a73f4ae206f6b9 100644 (file)
@@ -179,9 +179,10 @@ class robot_base(Robot):
                             if icons[icon_url]:
                                 bookmark.icon_href = icon_url
                                 content_type, bookmark.icon = icons[icon_url]
-                                self.log("   cached icon: %s" % content_type)
+                                self.log("   cached icon    : %s"
+                                         % content_type)
                             else:
-                                self.log("   cached icon: no icon")
+                                self.log("   cached icon    : no icon")
                         elif icon_url.startswith('data:'):
                             content_type, icon_data = \
                                 icon_url[len('data:'):].split(',', 1)