Skip to content

Commit

Permalink
Bug fix: incorrect attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
jni committed Jun 8, 2017
1 parent f0577b7 commit 0bf43f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gala/agglo2.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def __init__(self, fragments, data, functions=[tz.identity]):
self.functions = functions

def boundary_moments(self):
return self.moments(self.boundary.indptr, self.boundary.indices)
return self.moments(self.boundaries.indptr, self.boundaries.indices)

def node_moments(self):
return self.moments(self.nodes.indptr, self.nodes.indices)
Expand Down

0 comments on commit 0bf43f1

Please sign in to comment.