Merge pull request #28243 from andrewhsu/change-context

use "golang.org/x/net/context" instead of "context"
This commit is contained in:
Sebastiaan van Stijn 2016-11-10 19:13:56 +01:00 committed by GitHub
commit 02918908af
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,6 @@ package swarm
import (
"bufio"
"context"
"fmt"
"io"
"strings"
@ -13,6 +12,7 @@ import (
"github.com/docker/docker/api/types/swarm"
"github.com/docker/docker/cli"
"github.com/docker/docker/cli/command"
"golang.org/x/net/context"
)
func newUnlockCommand(dockerCli *command.DockerCli) *cobra.Command {