need MasterLevel.MasterLevel in Level

This commit is contained in:
Michael James 2018-10-15 16:14:29 -06:00
parent 3c580ed1fc
commit f51a590e51

View file

@ -31,7 +31,7 @@ class Level(object):
matcher = LEVEL_NAMING_REGEX.match(str(levelString))
if matcher is not None:
self.levelonevalue = numpy.float64(matcher.group(1))
self.masterLevel = MasterLevel(matcher.group(3))
self.masterLevel = MasterLevel.MasterLevel(matcher.group(3))
levelTwo = matcher.group(2)
if levelTwo:
self.leveltwovalue = numpy.float64(levelTwo)