From: Chuck Lever Date: Mon, 14 Nov 2005 16:50:59 +0000 (-0500) Subject: Fix a typo in "stg pick" X-Git-Tag: v0.8~23 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/69517f723d87fdf9a1b9af1286ea5a965994bfef?ds=sidebyside Fix a typo in "stg pick" "Unknown" is misspelled. Signed-off-by: Chuck Lever --- diff --git a/stgit/commands/pick.py b/stgit/commands/pick.py index 3c52a49..c01c799 100644 --- a/stgit/commands/pick.py +++ b/stgit/commands/pick.py @@ -64,7 +64,7 @@ def func(parser, options, args): elif len(patch_branch) == 2: patch = patch_branch[0] else: - raise CmdException, 'Unkown patch name' + raise CmdException, 'Unknown patch name' commit_id = git_id(commit_str) commit = git.Commit(commit_id)