comparison hgext/churn.py @ 3048:8d344bc72e68

[churn] repo.changes was renamed to repo.status
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Sun, 03 Sep 2006 16:23:18 -0400
parents 2a4d4aecb2b4
children 461573aa02ef
comparison
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