diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-11-07 09:43:25 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-11-07 09:43:25 -0500 |
commit | 5ffd19a0fbc473e34ac78f80d264c08ac0125e2b (patch) | |
tree | 157041763a70649a9e92fd575e4a266047626f90 | |
parent | 85a412c172044ae89d381f69ddb309ce8b3cea6e (diff) | |
download | vyos-cloud-init-5ffd19a0fbc473e34ac78f80d264c08ac0125e2b.tar.gz vyos-cloud-init-5ffd19a0fbc473e34ac78f80d264c08ac0125e2b.zip |
fix pep8 warnings
-rw-r--r-- | cloudinit/distros/__init__.py | 2 | ||||
-rw-r--r-- | tests/unittests/test_datasource/test_configdrive.py | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 21efe8d9..c848b909 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -439,7 +439,7 @@ def _normalize_groups(grp_cfg): # configuration. # # The output is a dictionary of user -# names => user config which is the standard +# names => user config which is the standard # form used in the rest of cloud-init. Note # the default user will have a special config # entry 'default' which will be marked as true diff --git a/tests/unittests/test_datasource/test_configdrive.py b/tests/unittests/test_datasource/test_configdrive.py index 4fa13db8..00379e03 100644 --- a/tests/unittests/test_datasource/test_configdrive.py +++ b/tests/unittests/test_datasource/test_configdrive.py @@ -6,11 +6,10 @@ import os.path import mocker from mocker import MockerTestCase -from cloudinit.sources import DataSourceConfigDrive as ds +from cloudinit import helpers from cloudinit import settings +from cloudinit.sources import DataSourceConfigDrive as ds from cloudinit import util -from cloudinit import helpers - PUBKEY = u'ssh-rsa AAAAB3NzaC1....sIkJhq8wdX+4I3A4cYbYP ubuntu@server-460\n' |