From: Tim Van Steenburgh Date: Tue, 13 Dec 2016 18:16:19 +0000 (-0500) Subject: Trivial bug fix X-Git-Tag: 0.1.0~12 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=2cafbe27c9fa355963e1f711c55183ac92ed0caf;hp=-c;p=osm%2FN2VC.git Trivial bug fix --- 2cafbe27c9fa355963e1f711c55183ac92ed0caf diff --git a/juju/model.py b/juju/model.py index e2d3d52..621ae06 100644 --- a/juju/model.py +++ b/juju/model.py @@ -885,7 +885,7 @@ class Model(object): # haven't made it yet we'll need to wait on them to be added await asyncio.gather(*[ asyncio.ensure_future( - self.model._wait_for_new('application', app_name)) + self._wait_for_new('application', app_name)) for app_name in pending_apps ]) return [app for name, app in self.applications.items()