]> git.phdru.name Git - bookmarks_db.git/commitdiff
Unindented log texts.
authorOleg Broytman <phd@phdru.name>
Thu, 6 Jan 2011 19:15:55 +0000 (19:15 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 6 Jan 2011 19:15:55 +0000 (19:15 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@326 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Robots/bkmk_rsimple.py

index 871082fe4a0113eddab4435582443fc29db0d068..5242d5765a8ae10ecd42cb8dcd02a3a74e031845 100644 (file)
@@ -196,9 +196,9 @@ class robot_simple(Robot):
                      if icons[icon]:
                         bookmark.icon_href = icon
                         content_type, bookmark.icon = icons[icon]
-                        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")
                   else:
                      try:
                         _icon = icon
@@ -207,7 +207,7 @@ class robot_simple(Robot):
                               icon_fname, headers = urllib.urlretrieve(_icon)
                            except RedirectException, e:
                               _icon = e.url
-                              self.log("       redirect to : %s" % _icon)
+                              self.log("   redirect to : %s" % _icon)
                            else:
                               break
                         else:
@@ -229,7 +229,7 @@ class robot_simple(Robot):
                            self.log("   got icon       : %s" % content_type)
                            if content_type.startswith("application/") \
                                  or content_type.startswith("text/plain"):
-                              self.log("       non-image content type, assume x-icon")
+                              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))
                            icons[icon] = (content_type, bookmark.icon)