From 78ff9e8ffa25665f5f71f9ba76cea20a7cef626d Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Tue, 28 Jun 2011 14:41:28 +0200
Subject: [PATCH] Fix a lint warning
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Patch db8e5f1c removed the use of feedback_fn, hence pylint warn
now.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: RenΓ© Nussbaumer <rn@google.com>
---
 lib/cmdlib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/cmdlib.py b/lib/cmdlib.py
index c5dbcd5e7..7ae8ee334 100644
--- a/lib/cmdlib.py
+++ b/lib/cmdlib.py
@@ -8491,7 +8491,7 @@ class TLReplaceDisks(Tasklet):
     """Releases the lock for a given node."""
     self.lu.context.glm.release(locking.LEVEL_NODE, node_name)
 
-  def _ExecDrbd8DiskOnly(self, feedback_fn):
+  def _ExecDrbd8DiskOnly(self, feedback_fn): # pylint: disable-msg=W0613
     """Replace a disk on the primary or secondary for DRBD 8.
 
     The algorithm for replace is quite complicated:
-- 
GitLab