print hint if initial manifest is missing

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-11-06 21:46:02 +01:00
commit aedb3669c7
3 changed files with 3 additions and 18 deletions

View file

@ -87,6 +87,6 @@ class Context(object):
def filter(self, record):
"""Add hostname to logs via logging Filter"""
record.msg = self.target_host + ": " + record.msg
record.msg = self.target_host + ": " + str(record.msg)
return True