Skip to content

Commit

Permalink
Fix typo in debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sghf committed Oct 24, 2017
1 parent 2c4d7b7 commit 8a48660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node.py
Expand Up @@ -282,15 +282,15 @@ def collector(self):
"""
Lazy initialization of the node Collector object.
"""
self.log.debug("initiatize node::collector")
self.log.debug("initialize node::collector")
return xmlrpcClient.Collector(node=self)

@lazy
def nodename(self):
"""
Lazy initialization of the node name.
"""
self.log.debug("initiatize node::nodename")
self.log.debug("initialize node::nodename")
return socket.gethostname().lower()

@lazy
Expand Down

0 comments on commit 8a48660

Please sign in to comment.