diff --git a/README.md b/README.md
index e77057e..4c870b6 100644
--- a/README.md
+++ b/README.md
@@ -58,7 +58,7 @@ Examples:
     goose mysql "user:password@/dbname?parseTime=true" status
     goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status
     goose tidb "user:password@/dbname?parseTime=true" status
-    goose sqlserver "sqlserver://user:password@dbname:1433?database=master"" status
+    goose sqlserver "sqlserver://user:password@dbname:1433?database=master" status
 
 Options:
 
diff --git a/cmd/goose/main.go b/cmd/goose/main.go
index ff0bd51..dcb7a0b 100644
--- a/cmd/goose/main.go
+++ b/cmd/goose/main.go
@@ -6,7 +6,7 @@ import (
 	"log"
 	"os"
 
-	"github.com/bandlab/goose"
+	"github.com/pressly/goose"
 )
 
 var (
@@ -83,7 +83,7 @@ Drivers:
     postgres
     mysql
     sqlite3
-	sqlserver
+    sqlserver
     redshift
 
 Examples:
@@ -97,7 +97,7 @@ Examples:
     goose mysql "user:password@/dbname?parseTime=true" status
     goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status
     goose tidb "user:password@/dbname?parseTime=true" status
-    goose sqlserver "sqlserver://user:password@dbname:1433?database=master"" status
+    goose sqlserver "sqlserver://user:password@dbname:1433?database=master" status
 
 Options:
 `
diff --git a/create.go b/create.go
index dfb75aa..55fe540 100644
--- a/create.go
+++ b/create.go
@@ -72,7 +72,7 @@ var goSQLMigrationTemplate = template.Must(template.New("goose.go-migration").Pa
 
 import (
 	"database/sql"
-	"github.com/bandlab/goose"
+	"github.com/pressly/goose"
 )
 
 func init() {
diff --git a/examples/go-migrations/00002_rename_root.go b/examples/go-migrations/00002_rename_root.go
index 78d4907..069d40a 100644
--- a/examples/go-migrations/00002_rename_root.go
+++ b/examples/go-migrations/00002_rename_root.go
@@ -3,7 +3,7 @@ package main
 import (
 	"database/sql"
 
-	"github.com/bandlab/goose"
+	"github.com/pressly/goose"
 )
 
 func init() {
diff --git a/examples/go-migrations/main.go b/examples/go-migrations/main.go
index f91a97a..77c9997 100644
--- a/examples/go-migrations/main.go
+++ b/examples/go-migrations/main.go
@@ -7,7 +7,7 @@ import (
 	"log"
 	"os"
 
-	"github.com/bandlab/goose"
+	"github.com/pressly/goose"
 
 	_ "github.com/mattn/go-sqlite3"
 )