mercurial/debugcommands.py
changeset 45865 d7a508a75d72
parent 45819 d6279c43fc60
child 45874 1a72e4839795
--- a/mercurial/debugcommands.py	Sat Nov 07 16:36:19 2020 -0800
+++ b/mercurial/debugcommands.py	Sun Nov 08 16:23:35 2020 -0500
@@ -78,6 +78,7 @@
     sshpeer,
     sslutil,
     streamclone,
+    strip,
     tags as tagsmod,
     templater,
     treediscovery,
@@ -105,7 +106,9 @@
 
 release = lockmod.release
 
-command = registrar.command()
+table = {}
+table.update(strip.command._table)
+command = registrar.command(table)
 
 
 @command(b'debugancestor', [], _(b'[INDEX] REV1 REV2'), optionalrepo=True)