Remove use of deprecated terse() on print_var

terse is now the default.

Change-Id: If25901eea7fdfa502b012cb995242790e7f6176d
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/lib/bmc_redfish.py b/lib/bmc_redfish.py
index 46e39fb..4a54630 100644
--- a/lib/bmc_redfish.py
+++ b/lib/bmc_redfish.py
@@ -85,7 +85,7 @@
         Example robot code:
 
         ${properties}=  Get Properties  /redfish/v1/Systems/system/
-        Rprint Vars  properties  fmt=terse
+        Rprint Vars  properties
 
         Output:
 
diff --git a/lib/dump_utils.py b/lib/dump_utils.py
index c149d77..75534bf 100755
--- a/lib/dump_utils.py
+++ b/lib/dump_utils.py
@@ -28,7 +28,7 @@
     Example robot program call:
 
     ${dump_dict}=  Get Dump Dict
-    Rprint Vars  dump_dict  fmt=terse
+    Rprint Vars  dump_dict
 
     Example output:
 
diff --git a/lib/logging_utils.py b/lib/logging_utils.py
index c0ba4ab..fa441a1 100644
--- a/lib/logging_utils.py
+++ b/lib/logging_utils.py
@@ -74,7 +74,7 @@
             pass
         key_list.insert(0, var.BMC_LOGGING_ENTRY + ".*")
 
-    gp.print_var(error_logs, gp.terse(), key_list=key_list)
+    gp.print_var(error_logs, key_list=key_list)
 
 
 def get_esels(error_logs=None):
diff --git a/lib/var_stack.py b/lib/var_stack.py
index f09845c..2b2aa97 100644
--- a/lib/var_stack.py
+++ b/lib/var_stack.py
@@ -92,8 +92,7 @@
 
         buffer += self.__obj_name + ":\n"
         indent = 2
-        buffer += gp.sprint_varx('stack_dict', self.__stack_dict, gp.terse(),
-                                 indent)
+        buffer += gp.sprint_varx('stack_dict', self.__stack_dict, indent)
 
         return buffer