Codebase list sugar-log-activity / b4c7fca
logcollect: missing newline after date Log collections showed meminfo on same line as date. James Cameron authored 9 years ago Gonzalo Odiard committed 9 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
389389 # Do not include UUID!
390390 s += 'laptop-info-version: 1.0\n'
391391 s += 'clock: %f\n' % time.clock()
392 s += 'date: %s' % time.strftime("%a, %d %b %Y %H:%M:%S +0000",
392 s += 'date: %s\n' % time.strftime("%a, %d %b %Y %H:%M:%S +0000",
393393 time.gmtime())
394394 s += 'memfree: %s\n' % self._mp.memfree()
395395 s += 'disksize: %s MB\n' % ( self._mp.disksize('/') / (1024*1024) )