Revision fe267188 lib/cmdlib.py

b/lib/cmdlib.py
84 84
    self.recalculate_locks = {}
85 85
    self.__ssh = None
86 86
    # logging
87
    self.LogWarning = processor.LogWarning
88
    self.LogInfo = processor.LogInfo
87
    self.LogWarning = processor.LogWarning # pylint: disable-msg=C0103
88
    self.LogInfo = processor.LogInfo # pylint: disable-msg=C0103
89 89

  
90 90
    for attr_name in self._OP_REQP:
91 91
      attr_val = getattr(op, attr_name, None)
......
322 322
    del self.recalculate_locks[locking.LEVEL_NODE]
323 323

  
324 324

  
325
class NoHooksLU(LogicalUnit):
325
class NoHooksLU(LogicalUnit): # pylint: disable-msg=W0223
326 326
  """Simple LU which runs no hooks.
327 327

  
328 328
  This LU is intended as a parent for other LogicalUnits which will
......
6635 6635
                  " Domain Name.")
6636 6636

  
6637 6637

  
6638
class TagsLU(NoHooksLU):
6638
class TagsLU(NoHooksLU): # pylint: disable-msg=W0223
6639 6639
  """Generic tags LU.
6640 6640

  
6641 6641
  This is an abstract class which is the parent of all the other tags LUs.

Also available in: Unified diff