diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-08-22 22:40:40 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-08-22 22:40:40 -0400 |
commit | fc8f46d5f49c29d234560749bdf9789812571327 (patch) | |
tree | 14953db3e836dd7a9c450e023bdbde2201cfbcc5 /cloudinit | |
parent | d05dd3963eda608df0b14042e8548d42c860835e (diff) | |
download | vyos-cloud-init-fc8f46d5f49c29d234560749bdf9789812571327.tar.gz vyos-cloud-init-fc8f46d5f49c29d234560749bdf9789812571327.zip |
pep8 fixes
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/distros/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 8da9a0b5..669dca18 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -67,12 +67,11 @@ class Distro(object): home="/home/%s" % user, shell="/bin/bash", lockpasswd=True, - gecos="%s%s" % (user[0:1].upper(),user[1:]), + gecos="%s%s" % (user[0:1].upper(), user[1:]), sudo="ALL=(ALL) NOPASSWD:ALL") LOG.info("Added default '%s' user with passwordless sudo", user) - @abc.abstractmethod def install_packages(self, pkglist): raise NotImplementedError() |