diff options
author | Joseph Bajin <josephbajin@gmail.com> | 2014-08-18 11:16:45 -0400 |
---|---|---|
committer | Joseph Bajin <josephbajin@gmail.com> | 2014-08-18 11:16:45 -0400 |
commit | 7dbebd3fe9384ba90fce88cb715472d92e00e987 (patch) | |
tree | e3902ccd7e9d47fcdd452ce7112876e70b9a697d /cloudinit/util.py | |
parent | 26c7693456c43ff5b7f91d99a9282802c180e313 (diff) | |
download | vyos-cloud-init-7dbebd3fe9384ba90fce88cb715472d92e00e987.tar.gz vyos-cloud-init-7dbebd3fe9384ba90fce88cb715472d92e00e987.zip |
fix: Updated some syntax to be pep8 compliant
Diffstat (limited to 'cloudinit/util.py')
-rw-r--r-- | cloudinit/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index a8a26325..82d75843 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -1391,7 +1391,7 @@ def mount_cb(device, callback, data=None, rw=False, mtype=None, sync=True): lazy_support = False else: lazy_support = True - with unmounter(umount,lazy_support): + with unmounter(umount, lazy_support): if data is None: ret = callback(mountpoint) else: |