summaryrefslogtreecommitdiff
path: root/usr/src/tools/scripts/hg-active.py
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/tools/scripts/hg-active.py')
-rw-r--r--usr/src/tools/scripts/hg-active.py2
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)