From ff3db0e4da2b61c858766adf5237c2877ffd411b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 27 Aug 2008 16:38:11 +1000 Subject: [PATCH] Remove dashed form of git command still in comment MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Daniel White Signed-off-by: Daniel White Signed-off-by: Karl Hasselström --- stgit/commands/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 780ff51..f6c6a35 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -57,7 +57,7 @@ def git_id(crt_series, rev): def git_commit(name, repository, branch_name = None): """Return the a Commit object if 'name' is a patch name or Git commit. The patch names allowed are in the form ':' and can - be followed by standard symbols used by git-rev-parse. If + be followed by standard symbols used by git rev-parse. If is '{base}', it represents the bottom of the stack. """ # Try a [branch:]patch name first -- [mdw]