Browse code

Fix missing import

This import got lost after commit 56cc56b0fa806bf8fc3a288a533314331d44cdfa
was merged, likely because the PR was built against an outdated
master.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2018/12/13 01:48:48
Showing 1 changed files
... ...
@@ -18,6 +18,7 @@ import (
18 18
 	"github.com/docker/docker/volume"
19 19
 	volumemounts "github.com/docker/docker/volume/mounts"
20 20
 	"github.com/opencontainers/selinux/go-selinux/label"
21
+	"github.com/pkg/errors"
21 22
 	"github.com/sirupsen/logrus"
22 23
 	"golang.org/x/sys/unix"
23 24
 )