Blame SOURCES/0001-change-import-paths.patch

e043e9
From bed55580f972cc08209357fce5589fefadf398af Mon Sep 17 00:00:00 2001
e043e9
From: Jan Chaloupka <jchaloup@redhat.com>
e043e9
Date: Tue, 17 May 2016 21:44:45 +0200
e043e9
Subject: [PATCH] change import paths
e043e9
e043e9
---
e043e9
 tools/benchmark/cmd/put.go   | 2 +-
e043e9
 tools/benchmark/cmd/range.go | 2 +-
e043e9
 tools/benchmark/cmd/root.go  | 2 +-
e043e9
 tools/benchmark/cmd/stm.go   | 2 +-
e043e9
 tools/benchmark/cmd/watch.go | 2 +-
e043e9
 5 files changed, 5 insertions(+), 5 deletions(-)
e043e9
e043e9
diff --git a/tools/benchmark/cmd/put.go b/tools/benchmark/cmd/put.go
e043e9
index 5f92dd6..557d3f5 100644
e043e9
--- a/tools/benchmark/cmd/put.go
e043e9
+++ b/tools/benchmark/cmd/put.go
e043e9
@@ -24,7 +24,7 @@ import (
e043e9
 	v3 "github.com/coreos/etcd/clientv3"
e043e9
 	"github.com/spf13/cobra"
e043e9
 	"golang.org/x/net/context"
e043e9
-	"gopkg.in/cheggaaa/pb.v1"
e043e9
+	"github.com/cheggaaa/pb"
e043e9
 )
e043e9
 
e043e9
 // putCmd represents the put command
e043e9
diff --git a/tools/benchmark/cmd/range.go b/tools/benchmark/cmd/range.go
e043e9
index 6e67e96..89a5f66 100644
e043e9
--- a/tools/benchmark/cmd/range.go
e043e9
+++ b/tools/benchmark/cmd/range.go
e043e9
@@ -22,7 +22,7 @@ import (
e043e9
 	v3 "github.com/coreos/etcd/clientv3"
e043e9
 	"github.com/spf13/cobra"
e043e9
 	"golang.org/x/net/context"
e043e9
-	"gopkg.in/cheggaaa/pb.v1"
e043e9
+	"github.com/cheggaaa/pb"
e043e9
 )
e043e9
 
e043e9
 // rangeCmd represents the range command
e043e9
diff --git a/tools/benchmark/cmd/root.go b/tools/benchmark/cmd/root.go
e043e9
index a40731b..a7678c2 100644
e043e9
--- a/tools/benchmark/cmd/root.go
e043e9
+++ b/tools/benchmark/cmd/root.go
e043e9
@@ -19,7 +19,7 @@ import (
e043e9
 
e043e9
 	"github.com/coreos/etcd/pkg/transport"
e043e9
 	"github.com/spf13/cobra"
e043e9
-	"gopkg.in/cheggaaa/pb.v1"
e043e9
+	"github.com/cheggaaa/pb"
e043e9
 )
e043e9
 
e043e9
 // This represents the base command when called without any subcommands
e043e9
diff --git a/tools/benchmark/cmd/stm.go b/tools/benchmark/cmd/stm.go
e043e9
index ce29637..ac677fd 100644
e043e9
--- a/tools/benchmark/cmd/stm.go
e043e9
+++ b/tools/benchmark/cmd/stm.go
e043e9
@@ -25,7 +25,7 @@ import (
e043e9
 	v3sync "github.com/coreos/etcd/clientv3/concurrency"
e043e9
 	"github.com/spf13/cobra"
e043e9
 	"golang.org/x/net/context"
e043e9
-	"gopkg.in/cheggaaa/pb.v1"
e043e9
+	"github.com/cheggaaa/pb"
e043e9
 )
e043e9
 
e043e9
 // stmCmd represents the STM benchmark command
e043e9
diff --git a/tools/benchmark/cmd/watch.go b/tools/benchmark/cmd/watch.go
e043e9
index cd20251..376ee74 100644
e043e9
--- a/tools/benchmark/cmd/watch.go
e043e9
+++ b/tools/benchmark/cmd/watch.go
e043e9
@@ -26,7 +26,7 @@ import (
e043e9
 
e043e9
 	"github.com/spf13/cobra"
e043e9
 	"golang.org/x/net/context"
e043e9
-	"gopkg.in/cheggaaa/pb.v1"
e043e9
+	"github.com/cheggaaa/pb"
e043e9
 )
e043e9
 
e043e9
 // watchCmd represents the watch command
e043e9
-- 
e043e9
1.9.3
e043e9