diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2017-03-28 15:01:50 -0400 |
---|---|---|
committer | Sylvain Pineau <sylvain.pineau@canonical.com> | 2017-04-03 09:39:22 +0200 |
commit | fa402521f89e33d749f731de251a2876f1dae93c (patch) | |
tree | 4ef97bbfbcca4883abbd5adbbe72d8eec85d19f6 /bin | |
parent | bafb9ca4236e0faeb3a3f5a59626396863043eb3 (diff) |
PEP8 cleanup
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/virtualization | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/virtualization b/bin/virtualization index f06839a..438a1a2 100755 --- a/bin/virtualization +++ b/bin/virtualization @@ -689,7 +689,7 @@ class LXDTest(object): if not self.run_command('lxc launch {} {}'.format(self.image_alias, self.name)): return False - + logging.debug("Container listing:") cmd = ("lxc list") if not self.run_command(cmd): @@ -700,7 +700,6 @@ class LXDTest(object): "bs=1024 count=1000".format(self.name)) if not self.run_command(cmd): return False - return True |