diff options
author | Edward Pilatowicz <Edward.Pilatowicz@Sun.COM> | 2009-10-13 16:17:17 -0700 |
---|---|---|
committer | Edward Pilatowicz <Edward.Pilatowicz@Sun.COM> | 2009-10-13 16:17:17 -0700 |
commit | e6ccc173e1790aa96d62728631f62d5217d0188d (patch) | |
tree | dfea6f079984d65da1844f396d667a136aef67f5 /usr/src/tools/scripts/hg-active.py | |
parent | 095be8246d11658e6dfb4091993683a23b722024 (diff) | |
download | illumos-joyent-e6ccc173e1790aa96d62728631f62d5217d0188d.tar.gz |
6793446 webrev could support "hg copy" better
Diffstat (limited to 'usr/src/tools/scripts/hg-active.py')
-rw-r--r-- | usr/src/tools/scripts/hg-active.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/hg-active.py b/usr/src/tools/scripts/hg-active.py index b2132aad69..d188a41bf9 100644 --- a/usr/src/tools/scripts/hg-active.py +++ b/usr/src/tools/scripts/hg-active.py @@ -101,7 +101,7 @@ def main(argv): entries.sort() for entry in entries: - if entry.is_renamed(): + if entry.is_renamed() or entry.is_copied(): fh.write("%s %s\n" % (entry.name, entry.parentname)) else: fh.write("%s\n" % entry.name) |