Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 10835:6e876718d0cf
commands: leftover from d7b601f1e02c
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 05 Apr 2010 13:44:30 +0200 |
parents | 4ab459a6c25c |
children | f0bfe42c7b1f |
comparison
equal
deleted
inserted
replaced
10834:4ab459a6c25c | 10835:6e876718d0cf |
---|---|
3073 """ | 3073 """ |
3074 | 3074 |
3075 ctx = repo[None] | 3075 ctx = repo[None] |
3076 parents = ctx.parents() | 3076 parents = ctx.parents() |
3077 pnode = parents[0].node() | 3077 pnode = parents[0].node() |
3078 tags = repo.tags() | |
3079 | 3078 |
3080 for p in parents: | 3079 for p in parents: |
3081 # label with log.changeset (instead of log.parent) since this | 3080 # label with log.changeset (instead of log.parent) since this |
3082 # shows a working directory parent *changeset*: | 3081 # shows a working directory parent *changeset*: |
3083 ui.write(_('parent: %d:%s ') % (p.rev(), str(p)), | 3082 ui.write(_('parent: %d:%s ') % (p.rev(), str(p)), |