summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Tanner <tanner.jc@gmail.com>2013-11-19 16:39:48 -0500
committerJames Tanner <tanner.jc@gmail.com>2013-11-19 16:39:48 -0500
commit1d24bcc916be23d4e519b59ea74f35c4676d7229 (patch)
tree374730cc129ebe87c8c629ca219526d0c8f77d4a
parentcc2fdb9d83b4bb031074adc8c05bbdd129e4a2ea (diff)
downloadansible-1d24bcc916be23d4e519b59ea74f35c4676d7229.tar.gz
Fix pep8 error in hostname module
-rw-r--r--library/system/hostname2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/system/hostname b/library/system/hostname
index 6472a64d2e..04a831bc9d 100644
--- a/library/system/hostname
+++ b/library/system/hostname
@@ -265,7 +265,7 @@ class FedoraStrategy(GenericStrategy):
if rc != 0:
self.module.fail_json(msg="Command failed rc=%d, out=%s, err=%s" %
(rc, out, err))
- return out
+ return out
def set_permanent_hostname(self, name):
cmd = ['hostnamectl', '--pretty', 'set-hostname', name]