Skip to content
Snippets Groups Projects
Commit 577fd0d6 authored by Jeremy Auguste's avatar Jeremy Auguste
Browse files

Removed double quotes that aren't necessary

parent 95ae8055
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment