diff options
author | Anthony Fok <[email protected]> | 2016-04-20 22:28:26 +0800 |
---|---|---|
committer | Anthony Fok <[email protected]> | 2016-04-20 22:28:26 +0800 |
commit | 9ddf52021ba568c6262aa94210c6655a801c833b (patch) | |
tree | 380966dff5b123e9d5a767351ea54f7ce99d5b5a /watcher/batcher.go | |
parent | 5e9b147c2ab5536568ab1254a596479c1ac92b05 (diff) | |
download | hugo-9ddf52021ba568c6262aa94210c6655a801c833b.tar.gz hugo-9ddf52021ba568c6262aa94210c6655a801c833b.zip |
Update import path of fsnotify
Rename "gopkg.in/fsnotify.v1" to "github.com/fsnotify/fsnotify"
per upstream recommendation.
See https://github.com/fsnotify/fsnotify/issues/108 for rationale.
Diffstat (limited to 'watcher/batcher.go')
-rw-r--r-- | watcher/batcher.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/watcher/batcher.go b/watcher/batcher.go index 470863300..0b4083e81 100644 --- a/watcher/batcher.go +++ b/watcher/batcher.go @@ -16,7 +16,7 @@ package watcher import ( "time" - "gopkg.in/fsnotify.v1" + "github.com/fsnotify/fsnotify" ) type Batcher struct { |