delete \n in nopcommand

pull/820/head
Xiang Li 2013-07-23 15:31:28 -07:00
parent 487fe5874d
commit ee35508711
1 changed files with 1 additions and 1 deletions

View File

@ -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) {