diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-10-11 21:24:30 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-10-11 21:24:30 -0700 |
commit | bbe325c902ef3a3b8845cd3c1bb8bee0c3c74a89 (patch) | |
tree | f9d104e0badb23c41c026a8badf9cf0cc3a64f48 /cloudinit/distros/__init__.py | |
parent | 204c635e622b52bbe2b2c2a72765e3cb886602fc (diff) | |
download | vyos-cloud-init-bbe325c902ef3a3b8845cd3c1bb8bee0c3c74a89.tar.gz vyos-cloud-init-bbe325c902ef3a3b8845cd3c1bb8bee0c3c74a89.zip |
Add some more sysconfig tests + pylint cleanups.
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rw-r--r-- | cloudinit/distros/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index bafa69d3..fa7cc1ca 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -132,7 +132,8 @@ class Distro(object): # temporarily (until reboot so it should # not be depended on). Use the write # hostname functions for 'permanent' adjustments. - LOG.debug("Non-persistently setting the system hostname to %s", hostname) + LOG.debug("Non-persistently setting the system hostname to %s", + hostname) try: util.subp(['hostname', hostname]) except util.ProcessExecutionError: |