diff --git a/qa/qa_utils.py b/qa/qa_utils.py
index 8c7eec345a923747f4f3d794c80bed44e1daa4e5..110f4a38c1e38a1468a08257618ceb697a7db0a3 100644
--- a/qa/qa_utils.py
+++ b/qa/qa_utils.py
@@ -146,10 +146,12 @@ def AssertCommand(cmd, fail=False, node=None):
 def GetSSHCommand(node, cmd, strict=True):
   """Builds SSH command to be executed.
 
-  Args:
-  - node: Node the command should run on
-  - cmd: Command to be executed as a list with all parameters
-  - strict: Whether to enable strict host key checking
+  @type node: string
+  @param node: node the command should run on
+  @type cmd: string
+  @param cmd: command to be executed in the node
+  @type strict: boolean
+  @param strict: whether to enable strict host key checking
 
   """
   args = [ 'ssh', '-oEscapeChar=none', '-oBatchMode=yes', '-l', 'root', '-t' ]