Merge "Bugfix: netperf_bottleneck execute failed because is_same_heat_context return...
[yardstick.git] / yardstick / cmd / commands / plugin.py
index 9409566..f97c490 100644 (file)
@@ -9,27 +9,30 @@
 
 """ Handler for yardstick command 'plugin' """
 
+from __future__ import print_function
+
+from __future__ import absolute_import
 from yardstick.benchmark.core.plugin import Plugin
 from yardstick.common.utils import cliargs
 from yardstick.cmd.commands import change_osloobj_to_paras
 
 
 class PluginCommands(object):
-    '''Plugin commands.
+    """Plugin commands.
 
        Set of commands to manage plugins.
-    '''
+    """
 
     @cliargs("input_file", type=str, help="path to plugin configuration file",
              nargs=1)
     def do_install(self, args):
-        '''Install a plugin.'''
+        """Install a plugin."""
         param = change_osloobj_to_paras(args)
         Plugin().install(param)
 
     @cliargs("input_file", type=str, help="path to plugin configuration file",
              nargs=1)
     def do_remove(self, args):
-        '''Remove a plugin.'''
+        """Remove a plugin."""
         param = change_osloobj_to_paras(args)
         Plugin().remove(param)