From 7a5642f2ee08ea24b0e0a011d1e314f9e8b3c7c9 2013-06-25 22:04:12
From: James Booth <jabooth@gmail.com>
Date: 2013-06-25 22:04:12
Subject: [PATCH] remove debug print statements

---

diff --git a/IPython/parallel/apps/launcher.py b/IPython/parallel/apps/launcher.py
index 5e45b58..7eb7344 100644
--- a/IPython/parallel/apps/launcher.py
+++ b/IPython/parallel/apps/launcher.py
@@ -1123,7 +1123,6 @@ class BatchSystemLauncher(BaseLauncher):
     def _insert_queue_in_script(self):
         """Inserts a queue if required into the batch script.
         """
-        print self.queue_regexp.search(self.batch_template)
         if self.queue and not self.queue_regexp.search(self.batch_template):
             self.log.debug("adding PBS queue settings to batch script")
             firstline, rest = self.batch_template.split('\n',1)
@@ -1132,7 +1131,6 @@ class BatchSystemLauncher(BaseLauncher):
     def _insert_job_array_in_script(self):
         """Inserts a job array if required into the batch script.
         """
-        print self.job_array_regexp.search(self.batch_template)
         if not self.job_array_regexp.search(self.batch_template):
             self.log.debug("adding job array settings to batch script")
             firstline, rest = self.batch_template.split('\n',1)