From 3e1d862d4157e7cbae599deb5af04dd233f2e997 Mon Sep 17 00:00:00 2001 From: Anael Beutot Date: Mon, 3 Dec 2012 11:22:25 +0100 Subject: [PATCH] No dot at the end of an error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sébastien Luttringer --- cccli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cccli/command.py b/cccli/command.py index 6223b3d..87cf985 100644 --- a/cccli/command.py +++ b/cccli/command.py @@ -410,7 +410,7 @@ class TqlCommand(RemoteCommand): raise cmdError("RPCError: %s"%str(e)) # no result, goodbye if len(objs["objects"]) == 0: - raise cmdError("No selected object by TQL.") + raise cmdError("No selected object by TQL") self.printer.out("Objects:") self.print_objects(objs) # be sure boby want do that -- GitLab