Skip to content

Commit

Permalink
BUG Print() statement had wrong parantheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Oct 29, 2015
1 parent 709553a commit 376b74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfolio/tears.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ def create_bayesian_tear_sheet(returns, benchmark_rets=None,
"plotting stochastic volatility model", previous_time)

total_time = time() - start_time
print("\nTotal runtime was {:.2f} seconds.").format(total_time)
print("\nTotal runtime was {:.2f} seconds.".format(total_time))

gs.tight_layout(fig)

Expand Down

0 comments on commit 376b74c

Please sign in to comment.