# HG changeset patch # User Adrian Buehlmann # Date 2008-06-03 07:31:36 # Node ID d6caebe9c293094e578eb9f5494cc7d711f34293 # Parent 67a2d2d9bf213062d0cf13e442c652e8a1a1a31e mq: qimport: explain insertion point in doc string diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -1534,6 +1534,10 @@ def unapplied(ui, repo, patch=None, **op def qimport(ui, repo, *filename, **opts): """import a patch + The patch is inserted into the series after the last applied patch. + If no patches have been applied, qimport prepends the patch + to the series. + The patch will have the same name as its source file unless you give it a new one with --name.