Skip to content

Commit

Permalink
Removed code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
hlasimpk committed Apr 29, 2017
1 parent 8fd17f4 commit 8ecb3fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simbad/util/mr_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def suppress_stdout(self):

def _run_job(self, model):
"""Function to run MR on each model"""
logger.info("Running MR and refinement on %", model.pdb_code)
logger.info("Running MR and refinement on %s", model.pdb_code)

# Generate MR input file
self.MR_setup(model)
Expand Down Expand Up @@ -495,7 +495,7 @@ def run(job_queue):
print "MR with {0} was successful so removing remaining jobs from inqueue".format(model.pdb_code)
while not job_queue.empty():
job = job_queue.get()
logger.debug("Removed job [%] from inqueue", job.pdb_code)
logger.debug("Removed job [%s] from inqueue", job.pdb_code)

# Create job queue
job_queue = multiprocessing.Queue()
Expand Down

0 comments on commit 8ecb3fb

Please sign in to comment.