Skip to content

Commit

Permalink
Git garbed the merger from within eclipse
Browse files Browse the repository at this point in the history
  • Loading branch information
jimboid committed Oct 14, 2016
1 parent 925f3f0 commit c6c3f9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 30 deletions.
7 changes: 1 addition & 6 deletions Longbow/plugins/schedulers/lsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,8 @@ def prepare(job):
if job["email-address"] is not "":

if job["email-flags"] is not "":
<<<<<<< HEAD

jobfile.write("#BSUB " + job["email-flags"] + "\n")
=======

jobfile.write("#BSUB " + job["email-flags"])
>>>>>>> refs/heads/issues2-5-12
jobfile.write("#BSUB " + job["email-flags"] + "\n")

jobfile.write("#BSUB -u " + job["email-address"] + "\n")

Expand Down
7 changes: 1 addition & 6 deletions Longbow/plugins/schedulers/pbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,8 @@ def prepare(job):
if job["email-address"] is not "":

if job["email-flags"] is not "":
<<<<<<< HEAD

jobfile.write("#PBS -m " + job["email-flags"] + "\n")
=======

jobfile.write("#PBS -m " + job["email-flags"])
>>>>>>> refs/heads/issues2-5-12
jobfile.write("#PBS -m " + job["email-flags"] + "\n")

jobfile.write("#PBS -M " + job["email-address"] + "\n")

Expand Down
7 changes: 1 addition & 6 deletions Longbow/plugins/schedulers/sge.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,8 @@ def prepare(job):
if job["email-address"] is not "":

if job["email-flags"] is not "":
<<<<<<< HEAD

jobfile.write("#$ -m " + job["email-flags"] + "\n")
=======

jobfile.write("#$ -m " + job["email-flags"])
>>>>>>> refs/heads/issues2-5-12
jobfile.write("#$ -m " + job["email-flags"] + "\n")

jobfile.write("#$ -M " + job["email-address"] + "\n")

Expand Down
7 changes: 1 addition & 6 deletions Longbow/plugins/schedulers/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,8 @@ def prepare(job):
if job["email-address"] is not "":

if job["email-flags"] is not "":
<<<<<<< HEAD

jobfile.write("#SBATCH --mail-type=" + job["email-flags"] + "\n")
=======

jobfile.write("#SBATCH --mail-type=" + job["email-flags"])
>>>>>>> refs/heads/issues2-5-12
jobfile.write("#SBATCH --mail-type=" + job["email-flags"] + "\n")

jobfile.write("#SBATCH --mail-user=" + job["email-address"] + "\n")

Expand Down
7 changes: 1 addition & 6 deletions Longbow/plugins/schedulers/soge.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,8 @@ def prepare(job):
if job["email-address"] is not "":

if job["email-flags"] is not "":
<<<<<<< HEAD

jobfile.write("#$ -m " + job["email-flags"] + "\n")
=======

jobfile.write("#$ -m " + job["email-flags"])
>>>>>>> refs/heads/issues2-5-12
jobfile.write("#$ -m " + job["email-flags"] + "\n")

jobfile.write("#$ -M " + job["email-address"] + "\n")

Expand Down

0 comments on commit c6c3f9b

Please sign in to comment.