From df5b1dfca66df42f537ffe93ba77bbf889708f4e Mon Sep 17 00:00:00 2001 From: Carlos Castillo Date: Sat, 27 Oct 2012 20:20:29 -0700 Subject: [PATCH] Modified example to use local version of package instead of mattn's. --- example/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/main.go b/example/main.go index 35e5314..ba4d0ca 100644 --- a/example/main.go +++ b/example/main.go @@ -3,7 +3,7 @@ package main import ( "database/sql" "fmt" - _ "github.com/mattn/go-sqlite3" + _ "github.com/cookieo9/go-sqlite3" "os" )