hgext/churn.py
changeset 3048 8d344bc72e68
parent 3046 2a4d4aecb2b4
child 3049 461573aa02ef
equal deleted inserted replaced
3047:fcadf7a32425 3048:8d344bc72e68
    42 
    42 
    43     ##
    43     ##
    44 
    44 
    45     lines = 0
    45     lines = 0
    46 
    46 
    47     changes = repo.changes(node1, node2, None, util.always)
    47     changes = repo.status(node1, node2, None, util.always)[:5]
    48 
    48 
    49     modified, added, removed, deleted, unknown = changes
    49     modified, added, removed, deleted, unknown = changes
    50 
    50 
    51     who = repo.changelog.read(node2)[1]
    51     who = repo.changelog.read(node2)[1]
    52     who = templater.email(who) # get the email of the person
    52     who = templater.email(who) # get the email of the person