Skip to content

Commit

Permalink
ran 2to3 on lib directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Oct 10, 2017
1 parent 8e74e19 commit ed89349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/lib/jenkins_generic_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def cleanup_queue(test_root, test_id):
with Case(case_dir, read_only=True) as case:
jobmap = case.get_job_info()
jobkills = []
for jobname, jobid in jobmap.iteritems():
for jobname, jobid in jobmap.items():
logging.warning("Found leftover batch job {} ({}) that need to be deleted".format(jobid, jobname))
jobkills.append(jobid)

Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/update_acme_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def get_test_suite(suite, machine=None, compiler=None):
###############################################################################
def get_test_suites():
###############################################################################
return _TEST_SUITES.keys()
return list(_TEST_SUITES.keys())

###############################################################################
def infer_machine_name_from_tests(testargs):
Expand Down

0 comments on commit ed89349

Please sign in to comment.