]> git.phdru.name Git - bookmarks_db.git/blobdiff - Robots/bkmk_rforking.py
Style: Fix flake8 E261 at least two spaces before inline comment
[bookmarks_db.git] / Robots / bkmk_rforking.py
index 4d3e105a7a4063f7f5f5395d88d1ff18c1fa4601..6250af91603cfb8e6125b049e900f33c3be0e9ef 100644 (file)
@@ -47,7 +47,7 @@ def restart_subp(log):
 _set_subproc = True
 
 class robot_forking(Robot):
-    subproc = 'urllib2' # Default subprocess
+    subproc = 'urllib2'  # Default subprocess
 
     def check_url(self, bookmark):
         global _set_subproc
@@ -60,18 +60,20 @@ class robot_forking(Robot):
                 if attr.startswith('subproc_'):
                     subproc_attrs.append((attr[len('subproc_'):], getattr(self, attr)))
             if subproc_attrs:
-                subproc += ':' + ':'.join(['='.join((k,v)) for k,v in subproc_attrs])
+                subproc += ':' + ':'.join(
+                    ['='.join((k, v)) for k, v in subproc_attrs]
+                )
             os.environ['BKMK_ROBOT'] = subproc
 
         if not check_subp:
-            restart_subp(self.log) # Not restart, just start afresh
+            restart_subp(self.log)  # Not restart, just start afresh
 
         try:
             save_parent = bookmark.parent
             bookmark.parent = None
             subp_pipe.write_record(pickle.dumps(bookmark))
 
-            if check_subp.waitForPendingChar(60): # wait a minute
+            if check_subp.waitForPendingChar(60):  # wait a minute
                 new_b = pickle.loads(subp_pipe.read_record())
                 for attr in (
                     "error", "no_error",
@@ -101,4 +103,4 @@ class robot_forking(Robot):
         return 1
 
     def stop(self):
-        stop_subp(None) # Stop subprocess; do not log restarting
+        stop_subp(None)  # Stop subprocess; do not log restarting