From 5e823b718b3522db3a3bbe16fe5077724f063944 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 9 Apr 2012 00:13:00 -0400 Subject: [PATCH] Small fix --- earwigbot/commands/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/git.py b/earwigbot/commands/git.py index fef1ff0..e01b623 100644 --- a/earwigbot/commands/git.py +++ b/earwigbot/commands/git.py @@ -152,7 +152,7 @@ class Command(BaseCommand): self.reply(self.data, msg) else: ref.checkout() - ms = "switched from branch \x0302{1}\x0301 to \x0302{1}\x0301." + ms = "switched from branch \x0302{0}\x0301 to \x0302{1}\x0301." msg = ms.format(current_branch, target) self.reply(self.data, msg) log = "{0} checked out branch {1} of {2}"