Skip to content

Commit

Permalink
Fix error when not in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
mcraig-ibme committed Dec 18, 2018
1 parent 8329a97 commit 7603748
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oxasl/basil.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ def run(self, prev_output, progress_log=sys.stdout, log=sys.stdout):
self.options["continue-from-mvn"] = prev_output["finalMVN"]
from .wrappers import fabber
ret = fabber(self.options, output=LOAD, progress_log=progress_log, log={"stdout" : log})
log.write("\n")
if log is not None:
log.write("\n")
return ret

class PvcInitStep(Step):
Expand Down

0 comments on commit 7603748

Please sign in to comment.