summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-07-30 16:53:26 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-07-30 16:53:26 +0000
commit3d950f7787a2de5c0d495642f9337bd998f2edd7 (patch)
treede72ffb7fab3e337960d1f82445e5f39570e20ba
parentd91a916069b6a0acfbee21ce26e68633fa667258 (diff)
downloaddefinitions-3d950f7787a2de5c0d495642f9337bd998f2edd7.tar.gz
Remove unnecessary leading _ from method
-rwxr-xr-xscripts/release-build6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/release-build b/scripts/release-build
index 7713aab8..36ecb423 100755
--- a/scripts/release-build
+++ b/scripts/release-build
@@ -108,16 +108,16 @@ class ReleaseApp(cliapp.Application):
assert morph['kind'] == kind
return morph, path
- def _iterate_systems(self, system_list):
+ def iterate_systems(self, system_list):
for system in system_list:
yield system['morph']
if 'subsystems' in system:
- for subsystem in self._iterate_systems(system['subsystems']):
+ for subsystem in self.iterate_systems(system['subsystems']):
yield subsystem
def prepare_builds(self, cluster):
'''Prepare a list of builds'''
- systems = set(self._iterate_systems(cluster['systems']))
+ systems = set(self.iterate_systems(cluster['systems']))
builds = []
for system_name in systems:
system, _ = self.load_morphology(system_name)