comparison mercurial/hgweb/webcommands.py @ 7434:cf7741aa1e96

kill some trailing spaces
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 27 Nov 2008 16:07:13 +0100
parents f1111704061e
children 5f162f61e479
comparison
equal deleted inserted replaced
7433:c4ce828e8074 7434:cf7741aa1e96
560 "desc": ctx.description(), 560 "desc": ctx.description(),
561 "tags": webutil.nodetagsdict(web.repo, ctx.node()), 561 "tags": webutil.nodetagsdict(web.repo, ctx.node()),
562 "branch": webutil.nodebranchnodefault(ctx), 562 "branch": webutil.nodebranchnodefault(ctx),
563 "inbranch": webutil.nodeinbranch(web.repo, ctx), 563 "inbranch": webutil.nodeinbranch(web.repo, ctx),
564 "branches": webutil.nodebranchdict(web.repo, ctx)}) 564 "branches": webutil.nodebranchdict(web.repo, ctx)})
565 565
566 if limit > 0: 566 if limit > 0:
567 l = l[:limit] 567 l = l[:limit]
568 568
569 for e in l: 569 for e in l:
570 yield e 570 yield e