From 3407c6e93ad4006a1c9ea903df7173829152e4ad Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Sat, 21 Nov 2015 10:43:34 +0000 Subject: Fix release-build: read_morphology is now read_file Change-Id: I6971dbfa803c08d700574f61766fe7d5de2d1442 --- scripts/release-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-build b/scripts/release-build index 2dc8c2ff..a9810ffb 100755 --- a/scripts/release-build +++ b/scripts/release-build @@ -127,7 +127,7 @@ class ReleaseApp(cliapp.Application): def load_morphology(self, name, kind=None): path = morphlib.util.sanitise_morphology_path(name) morph = self.loader.load_from_string( - self.finder.read_morphology(path)) + self.finder.read_file(path)) if kind: assert morph['kind'] == kind return morph, path -- cgit v1.2.1