From 75b4c2deac9ff23a5a3c24b3d2450cd23ae3d705 Mon Sep 17 00:00:00 2001 From: Olof Johansson <olof.johansson@sonymobile.com> Date: Mon, 18 Feb 2013 13:18:16 +0100 Subject: [PATCH] Fix crash in repo info when `%` is used in commit messages Fix for issue #131 http://code.google.com/p/git-repo/issues/detail?id=131 Change-Id: I078533ab5f3a83154c4ad6aa97a5525fc5139d20 --- subcmds/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subcmds/info.py b/subcmds/info.py index a6eba889..8fb363f3 100644 --- a/subcmds/info.py +++ b/subcmds/info.py @@ -48,7 +48,7 @@ class Info(PagedCommand): self.headtext = self.out.printer('headtext', fg = 'yellow') self.redtext = self.out.printer('redtext', fg = 'red') self.sha = self.out.printer("sha", fg = 'yellow') - self.text = self.out.printer('text') + self.text = self.out.nofmt_printer('text') self.dimtext = self.out.printer('dimtext', attr = 'dim') self.opt = opt