Skip to content

Commit

Permalink
Plots: fix runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed May 2, 2017
1 parent 0146196 commit 61bd7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fretbursts/burst_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,7 @@ def _iter_plot(d, func, kwargs, iter_ch, nrows, ncols, figsize, AX,
ax.axis('off')
continue
b = d.mburst[ich] if 'mburst' in d else None
if i == 0 and suptitle and hasattr(d, status) and callable(d.status):
if i == 0 and suptitle and hasattr(d, 'status') and callable(d.status):
fig.suptitle(d.status())
s = '[%d]' % ich
if 'bg_mean' in d:
Expand Down

0 comments on commit 61bd7bd

Please sign in to comment.