From 5df314a2dc5e85ac859f637309aa261ee1e957cf Mon Sep 17 00:00:00 2001 From: Roland Pangu Date: Tue, 5 Sep 2017 19:54:16 -0700 Subject: [PATCH] Updated "context" import since it has become a standard library after go 1.7 https://golang.org/doc/go1.7#context --- sqlite3.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sqlite3.go b/sqlite3.go index 1ff58c3..2e9a821 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -108,6 +108,7 @@ void updateHookTrampoline(void*, int, char*, char*, sqlite3_int64); */ import "C" import ( + "context" "database/sql" "database/sql/driver" "errors" @@ -121,8 +122,6 @@ import ( "sync" "time" "unsafe" - - "golang.org/x/net/context" ) // SQLiteTimestampFormats is timestamp formats understood by both this module