Skip to content

Commit

Permalink
python formatting of constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
daues committed Oct 31, 2023
1 parent e3a0a26 commit 3ba3839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ctrl/execute/slurmPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def glideinsFromJobPressure(self):
"JobUniverse",
"RequestMemory",
]
owner = "".join(["(Owner==\"", auser, "\") "])
owner = "".join(['(Owner=="', auser, '") '])
jstat = "&& (JobStatus==1) "
juniv = "&& (JobUniverse==5)"
full_constraint = "".join([owner, jstat, juniv])
Expand Down

0 comments on commit 3ba3839

Please sign in to comment.