From 8ff4e9e0fd71a93ad943a186c814a2db5db64890 Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Mon, 25 Jun 2007 23:24:41 +0200 Subject: [PATCH] Fixed thinko in error message. Signed-off-by: Yann Dirson --- stgit/commands/rebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) -- 2.11.0