Implement "stg refresh --edit" again
[stgit] / stgit / commands / coalesce.py
index b390584..ef8e912 100644 (file)
@@ -24,6 +24,7 @@ from stgit.commands import common
 from stgit.lib import git, transaction
 
 help = 'Coalesce two or more patches into one'
+kind = 'stack'
 usage = ['[options] <patches>']
 description = """
 Coalesce two or more patches, creating one big patch that contains all
@@ -34,7 +35,7 @@ you specify, you will have to resolve them manually just as if you had
 done a sequence of pushes and pops yourself."""
 
 options = [opt('-n', '--name', short = 'Name of coalesced patch')
-           ] + argparse.message_options()
+           ] + argparse.message_options(save_template = True)
 
 directory = common.DirectoryHasRepositoryLib()