comparison hgext/churn.py @ 6598:7fc87fa485e5

churn: simplify hg status call
author Matt Mackall <mpm@selenic.com>
date Mon, 12 May 2008 11:37:08 -0500
parents ecde0baee570
children 53465a7464e2
comparison
equal deleted inserted replaced
6597:371415a2b959 6598:7fc87fa485e5
62 62
63 ## 63 ##
64 64
65 lines = 0 65 lines = 0
66 66
67 changes = repo.status(node1, node2, None, util.always)[:5] 67 changes = repo.status(node1, node2)[:5]
68 68
69 modified, added, removed, deleted, unknown = changes 69 modified, added, removed, deleted, unknown = changes
70 70
71 who = repo.changelog.read(node2)[1] 71 who = repo.changelog.read(node2)[1]
72 who = util.email(who) # get the email of the person 72 who = util.email(who) # get the email of the person