Fixed small issue with new _aggregate_filter property in AggregateFilter created with last commit

This commit is contained in:
wbinventor@gmail.com 2016-01-14 18:14:10 -05:00
parent 95e6d27bd9
commit d6b30e9b37
2 changed files with 2 additions and 1 deletions

View file

@ -256,7 +256,7 @@ class AggregateFilter(object):
if existing is None:
clone = type(self).__new__(type(self))
clone._type = self.type
clone._filter = self.aggregate_filter
clone._aggregate_filter = self.aggregate_filter
clone._aggregate_op = self.aggregate_op
clone._bins = self._bins
clone._stride = self.stride

View file

@ -3,6 +3,7 @@ import re
import numpy as np
import openmc
import openmc.checkvalue as cv
if sys.version > '3':
long = int