summaryrefslogtreecommitdiff
path: root/common/probdist
diff options
context:
space:
mode:
authorBrandon Wiley <brandon@blanu.net>2016-03-31 12:47:49 -0500
committerBrandon Wiley <brandon@blanu.net>2016-03-31 12:47:49 -0500
commitfd2c2431a08c4f2a17b7a8aa9edfadece67275ca (patch)
tree7dbf6b24244bbb194898a8a88eff79344bbf989a /common/probdist
parent303dce71a772049f4de49afd3f1dbfcadc7976cb (diff)
Changed import paths
Diffstat (limited to 'common/probdist')
-rw-r--r--common/probdist/weighted_dist.go4
-rw-r--r--common/probdist/weighted_dist_test.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/common/probdist/weighted_dist.go b/common/probdist/weighted_dist.go
index 5f8e88e..2822ce6 100644
--- a/common/probdist/weighted_dist.go
+++ b/common/probdist/weighted_dist.go
@@ -37,8 +37,8 @@ import (
"math/rand"
"sync"
- "git.torproject.org/pluggable-transports/obfs4.git/common/csrand"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
+ "github.com/OperatorFoundation/obfs4/common/csrand"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
)
const (
diff --git a/common/probdist/weighted_dist_test.go b/common/probdist/weighted_dist_test.go
index b705add..ca7247c 100644
--- a/common/probdist/weighted_dist_test.go
+++ b/common/probdist/weighted_dist_test.go
@@ -31,7 +31,7 @@ import (
"fmt"
"testing"
- "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
+ "github.com/OperatorFoundation/obfs4/common/drbg"
)
const debug = false