add extra print to get around a pexpect problem

Change-Id: Ie026feee4d13a4adfaa3acede873ac755b926672
diff --git a/TestON/tests/PLATdockertest/PLATdockertest.py b/TestON/tests/PLATdockertest/PLATdockertest.py
index 7531511..f2b1e65 100755
--- a/TestON/tests/PLATdockertest/PLATdockertest.py
+++ b/TestON/tests/PLATdockertest/PLATdockertest.py
@@ -251,6 +251,9 @@
                 handle = pexpect.spawn(spawncmd)
                 handle.expect("yes/no")
                 handle.sendline("yes")
+                print("yes is sent") 
+                #this extra statement is sent to get around some
+                #pexpect issue of not seeing the next expected string
                 handle.expect("Password:")
                 handle.sendline(pwd)
                 time.sleep(5)