2009/11/16 Guido Trotter <[email protected]>: > --- a/daemons/ganeti-nld > +++ b/daemons/ganeti-nld > + if self.nld_config.out_mc_file: > + utils.WriteFile(self.nld_config.out_mc_file, > + data="\n".join(mc_list))
This means the file doesn't end with a newline. Some programs don't like that at all. Use data="%s\n" % "\n".join(mc_list) instead. Then LGTM.
