Browse Source

Merge pull request #27121 from LK4D4/fix_import

volume/local: fix import path
Victor Vieux 8 years ago
parent
commit
f60727d185
1 changed files with 1 additions and 1 deletions
  1. 1 1
      volume/local/local_unix.go

+ 1 - 1
volume/local/local_unix.go

@@ -10,7 +10,7 @@ import (
 	"path/filepath"
 	"strings"
 
-	"src/github.com/pkg/errors"
+	"github.com/pkg/errors"
 
 	"github.com/docker/docker/pkg/mount"
 )