Skip to content

Commit

Permalink
Merge pull request #155 from ENCODE-DCC/dev
Browse files Browse the repository at this point in the history
v2.1.2
  • Loading branch information
leepc12 authored Dec 8, 2021
2 parents cddba79 + eaa0f68 commit 658368e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion caper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .caper_runner import CaperRunner

__all__ = ['CaperClient', 'CaperClientSubmit', 'CaperRunner']
__version__ = '2.1.1'
__version__ = '2.1.2'
2 changes: 1 addition & 1 deletion caper/cromwell_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def troubleshoot_call(call_name, call, parent_call_names):
job_id = call.get('jobId')
stdout = call.get('stdout')
stderr = call.get('stderr')
strerr_background = stderr + '.background'
strerr_background = (stderr + '.background') if stderr else None
run_start = None
run_end = None
for event in call.get('executionEvents', []):
Expand Down

0 comments on commit 658368e

Please sign in to comment.