infocalypse

(djk)
2009-04-06: Pylint fixes.

Pylint fixes.

diff --git a/infocalypse/requestingbundles.py b/infocalypse/requestingbundles.py
--- a/infocalypse/requestingbundles.py
+++ b/infocalypse/requestingbundles.py
@@ -504,7 +504,9 @@ class RequestingBundles(RetryingRequestL
                 # break. paranoia?
 
     # REDFLAG: for now, do parallel multiblock fetches.
-    def _handled_multiblock_no_graph_case(self, dummy, msg, candidate):
+    def _handled_multiblock_case(self, candidate):
+        """ INTERNAL: Handle requeueing full fetches when we don't have
+            the graph yet. """
         if (candidate[2] and self._multiple_block(candidate) and
             self.parent.ctx.graph is None):
             assert not candidate[4] is None
@@ -531,7 +533,7 @@ class RequestingBundles(RetryingRequestL
             candidate[5] = msg
             self.finished_candidates.append(candidate)
             return
-        if self._handled_multiblock_no_graph_case(client, msg, candidate):
+        if self._handled_multiblock_case(candidate):
             return
 
         if (candidate[2] and self._multiple_block(candidate)):
@@ -952,3 +954,5 @@ class RequestingBundles(RetryingRequestL
         print_list("current_candidates", self.current_candidates)
         print_list("next_candidates", self.next_candidates)
 
+
+#  LocalWords:  requeueing