Merge "Ensure log formats are quoted in sample conf"

This commit is contained in:
Jenkins 2012-08-24 16:33:50 +00:00 committed by Gerrit Code Review
commit 5c5ee02a7d

View File

@ -129,6 +129,8 @@ def _sanitize_default(s):
return '10.0.0.1'
elif s == HOST:
return 'nova'
elif s.strip() != s:
return '"%s"' % s
return s