From ee3550871185a28f1d90e7c4855f4faf49a72c32 Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Tue, 23 Jul 2013 15:31:28 -0700 Subject: [PATCH] delete \n in nopcommand --- nop_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nop_command.go b/nop_command.go index 925ccd71ec..333ebb4b65 100644 --- a/nop_command.go +++ b/nop_command.go @@ -10,7 +10,7 @@ type NOPCommand struct { // The name of the NOP command in the log func (c NOPCommand) CommandName() string { - return "nop\n" + return "nop" } func (c NOPCommand) Apply(server *Server) (interface{}, error) {