]> git.phdru.name Git - bookmarks_db.git/blobdiff - Robots/bkmk_rforking.py
Fixed a bug = meta_charset is True if HTTP charset is not guessed charset.
[bookmarks_db.git] / Robots / bkmk_rforking.py
index 9e2d5d8408d212b9e7094567437823cb437d39e3..4693f52979741235db3beb7fe4947e7ae6055823 100644 (file)
@@ -1,7 +1,7 @@
 """
    Forking robot
 
-   Written by BroytMann, Mar 2000 - Jun 2002. Copyright (C) 2000-2002 PhiloSoft Design
+   Written by BroytMann. Copyright (C) 2000-2007 PhiloSoft Design.
 """
 
 
@@ -36,7 +36,7 @@ def restart_subp(log):
 from bkmk_objects import Robot
 
 class robot_forking(Robot):
-   def check_url(self, bookmark, url_type, url_rest):
+   def check_url(self, bookmark):
       if not check_subp:
          restart_subp(self.log) # Not restart, just start afresh
 
@@ -51,7 +51,7 @@ class robot_forking(Robot):
             new_b = pickle.loads(subp_pipe.read_record())
             for attr in ("error", "no_error",
                   "moved", "size", "md5", "real_title",
-                  "last_tested", "last_modified", "test_time"):
+                  "last_tested", "last_modified", "test_time", "icon"):
                if hasattr(new_b, attr):
                   setattr(bookmark, attr, getattr(new_b, attr))
          else: