From c80348596b45d0b039d463af9e3005fe033946a2 Mon Sep 17 00:00:00 2001
From: Ke Li <kel@splunk.com>
Date: Sat, 3 Dec 2016 13:22:42 +0800
Subject: [PATCH] fix review comments

Signed-off-by: Ke Li <kel@splunk.com>
---
 libnetwork/cmd/dnet/cmd.go    | 4 ++--
 libnetwork/cmd/proxy/proxy.go | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/libnetwork/cmd/dnet/cmd.go b/libnetwork/cmd/dnet/cmd.go
index c9ec2d2b1d..428b433bab 100644
--- a/libnetwork/cmd/dnet/cmd.go
+++ b/libnetwork/cmd/dnet/cmd.go
@@ -44,7 +44,7 @@ var (
 
 func runContainerCreate(c *cli.Context) {
 	if len(c.Args()) == 0 {
-		fmt.Print("Please provide container id argument\n")
+		fmt.Println("Please provide container id argument")
 		os.Exit(1)
 	}
 
@@ -70,7 +70,7 @@ func runContainerRm(c *cli.Context) {
 	var sbList []*client.SandboxResource
 
 	if len(c.Args()) == 0 {
-		fmt.Print("Please provide container id argument\n")
+		fmt.Println("Please provide container id argument")
 		os.Exit(1)
 	}
 
diff --git a/libnetwork/cmd/proxy/proxy.go b/libnetwork/cmd/proxy/proxy.go
index b846905316..67574afa5e 100644
--- a/libnetwork/cmd/proxy/proxy.go
+++ b/libnetwork/cmd/proxy/proxy.go
@@ -3,7 +3,6 @@
 package main
 
 import (
-	"errors"
 	"net"
 )
 
@@ -32,6 +31,6 @@ func NewProxy(frontendAddr, backendAddr net.Addr) (Proxy, error) {
 	case *net.TCPAddr:
 		return NewTCPProxy(frontendAddr.(*net.TCPAddr), backendAddr.(*net.TCPAddr))
 	default:
-		panic(errors.New("Unsupported protocol"))
+		panic("Unsupported protocol")
 	}
 }