From 577fd0d63c3cab7ac1377c2eb51078e8510f8059 Mon Sep 17 00:00:00 2001
From: Jeremy Auguste <jeremy.auguste@dhcp-14.lidil.univ-mrs.fr>
Date: Thu, 9 Nov 2017 16:03:54 +0100
Subject: [PATCH] Removed double quotes that aren't necessary

---
 oargen.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oargen.py b/oargen.py
index 3215c7f..89e7071 100755
--- a/oargen.py
+++ b/oargen.py
@@ -49,14 +49,14 @@ def main():
 
     command = ["oarsub"]
     command.append("-p")
-    properties = "\""
+    properties = ""
     if args.gpu:
         properties += "(gpu IS NOT NULL)"
     else:
         properties += "(gpu IS NULL)"
     if args.host is not None:
         properties += " AND host LIKE '{}'".format(args.host)
-    properties += "\""
+    properties += ""
     command.append(properties)
 
     command.append("-l")
-- 
GitLab