From ad5cd27de80b5b60d7f97c2611b835540ba94235 Mon Sep 17 00:00:00 2001
From: Manuel Gunther <siebenkopf@googlemail.com>
Date: Mon, 14 Sep 2015 18:32:39 -0600
Subject: [PATCH] Fixed wrong keyword removal during grid submission

---
 bob/bio/base/tools/grid.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/bio/base/tools/grid.py b/bob/bio/base/tools/grid.py
index 1cd5cc57..6dad8179 100644
--- a/bob/bio/base/tools/grid.py
+++ b/bob/bio/base/tools/grid.py
@@ -58,7 +58,7 @@ class GridSubmission:
       assert os.path.isfile(jman)
 
       self.args = args
-      self.command_line = [p for p in command_line_parameters if not p.startswith('--skip') and p not in ('-q', '--dry-run', '-o', '--execute-only')]
+      self.command_line = [p for p in command_line_parameters if not p.startswith('--skip') and p not in ('-q', '--dry-run')]
       self.fake_job_id = first_fake_job_id
 
       import gridtk
-- 
GitLab