Merge "Add a new monitor type: MultiMonitor that can run any number of other monitors...
[yardstick.git] / yardstick / benchmark / scenarios / availability / attacker / baseattacker.py
index f5f74f2..ca23240 100644 (file)
@@ -61,7 +61,7 @@ class BaseAttacker(object):
 
     @staticmethod
     def get_attacker_cls(attacker_cfg):
-        '''return attacker instance of specified type'''
+        """return attacker instance of specified type"""
         attacker_type = attacker_cfg['fault_type']
         for attacker_cls in utils.itersubclasses(BaseAttacker):
             if attacker_type == attacker_cls.__attacker_type__: