From fcdebbd55fb65d155480108fbaf60c2654d7b16e Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 30 Nov 2010 14:48:13 +0000 Subject: [PATCH] cosmeticados --- lib/controller/controller.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index 29a0f312d..adda690e8 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -64,6 +64,7 @@ def __selectInjection(): if len(points) == 1: kb.injection = kb.injections[0] + elif len(points) > 1: message = "there were multiple injection points, please select " message += "the one to use for following injections:\n" @@ -119,6 +120,8 @@ def __showInjections(): for inj in kb.injections: data += __formatInjection(inj) + data = data.rstrip("\n") + dumper.technic(header, data) def __saveToSessionFile():