Skip to content

Commit

Permalink
fix: no comm attribute on group in redistribute
Browse files Browse the repository at this point in the history
  • Loading branch information
jrs65 committed Apr 10, 2019
1 parent 507e33b commit be655b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caput/memh5.py
Original file line number Diff line number Diff line change
Expand Up @@ -1690,7 +1690,7 @@ def _tree_crawl(group):
# Note that this clause is on the FOR.
else:
# If we are here we didn't find a matching axis, emit a warning
if group.comm.rank == 0:
if self.comm.rank == 0:
warnings.warn(('Could not find an axis (out of %s)'
+ 'to distributed dataset %s over.') % (str(dist_axis), name))

Expand Down

0 comments on commit be655b0

Please sign in to comment.