Index: /trunk/ippToPsps/jython/ipptopsps.py
===================================================================
--- /trunk/ippToPsps/jython/ipptopsps.py	(revision 32071)
+++ /trunk/ippToPsps/jython/ipptopsps.py	(revision 32072)
@@ -120,5 +120,10 @@
 # prompt user: FORCE and PUBLISH is a dangerous combination
 if FORCE and PUBLISH and not QUEUE_IN:
-   response = raw_input("*** Are you sure you want to publish data with the 'force' option enabled (y/n)? ")
+   response = raw_input("\n*** Are you sure you want to publish data with the 'force' option enabled (y/n)? ")
+   if response != "y": sys.exit(1)
+
+# prompt user: TEST and PUBLISH is a dangerous combination
+if TEST and PUBLISH and not QUEUE_IN:
+   response = raw_input("\n*** Are you sure you want to publish data with the 'testMode' option enabled (y/n)? ")
    if response != "y": sys.exit(1)
 
