Change to rprocess_plug_in_packages() in gen_robot_plugin.py.

When not in debug mode, we want to have "Processing " +
  call_point + " call point programs." printed.

Change-Id: Id82af7afeb6c59673c1976252b0fd087b3866937
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/lib/gen_robot_plug_in.py b/lib/gen_robot_plug_in.py
index 5617f8b..a8e6005 100755
--- a/lib/gen_robot_plug_in.py
+++ b/lib/gen_robot_plug_in.py
@@ -178,7 +178,9 @@
 
         if int(debug) == 1:
             grp.rpissuing(cmd_buf)
-        grp.rprint_timen("Processing " + call_point + " call point programs.")
+        else:
+            grp.rprint_timen("Processing " + call_point +
+                             " call point programs.")
 
     proc_plug_pkg_rc = subprocess.call(cmd_buf, shell=True)