When gitdm is used for generating text-only report with its output
redirected to a file, all is well aside from the clutter at the beginning
of that file -- a very long line with repeating "Grabbing changesets...".
Solve that by redirecting progress reporting to stderr. It also helps to
see the progress when you redirect gitdm output to a file.
Also, we don't have to flush stdout since stderr is unbuffered by default.
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
#
# Snarf changesets.
#
-print 'Grabbing changesets...\r',
-sys.stdout.flush ()
+print >> sys.stderr, 'Grabbing changesets...\r',
printcount = CSCount = 0
while (1):
if (printcount % 50) == 0:
- print 'Grabbing changesets...%d\r' % printcount,
- sys.stdout.flush ()
+ print >> sys.stderr, 'Grabbing changesets...%d\r' % printcount,
printcount += 1
p = grabpatch()
if not p:
for sobemail, sob in p.sobs:
sob.addsob (p)
CSCount += 1
-print 'Grabbing changesets...done'
+print >> sys.stderr, 'Grabbing changesets...done'
if DumpDB:
database.DumpDB ()