From: Yann Dirson Date: Mon, 25 Jun 2007 21:24:41 +0000 (+0200) Subject: Fixed thinko in error message. X-Git-Tag: v0.13~27 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/8ff4e9e0fd71a93ad943a186c814a2db5db64890?ds=inline Fixed thinko in error message. Signed-off-by: Yann Dirson --- diff --git a/stgit/commands/rebase.py b/stgit/commands/rebase.py index e47772c..c68f8e7 100644 --- a/stgit/commands/rebase.py +++ b/stgit/commands/rebase.py @@ -54,7 +54,7 @@ def func(parser, options, args): # ensure an exception is raised before popping on non-existent target if git_id(args[0]) == None: - raise GitException, 'Unknown revision: %s' % git_id + raise GitException, 'Unknown revision: %s' % args[0] applied = prepare_rebase(force=options.force) rebase(args[0])