Commit 225b52ef by Stéphane Graber

lxc-start-ephemeral: Add missing return call to wait override

When overriding wait(), I forgot to actually return the value coming from the C binding... Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com> Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
parent 921ceb26
...@@ -370,7 +370,7 @@ class Container(_lxc.Container): ...@@ -370,7 +370,7 @@ class Container(_lxc.Container):
if isinstance(state, str): if isinstance(state, str):
state = state.upper() state = state.upper()
_lxc.Container.wait(self, state, timeout) return _lxc.Container.wait(self, state, timeout)
def list_containers(as_object=False): def list_containers(as_object=False):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment