Use stable version of fsnotify

fixes #46
This commit is contained in:
Sridhar Ratnakumar 2015-06-28 20:23:06 -07:00
parent 4d381fccb0
commit 15e71d383e
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
# June, 2015 # June, 2015
* Don't return partial lines (PR #40) * Don't return partial lines (PR #40)
* Use stable version of fsnotify (#46)
# July, 2014 # July, 2014

View File

@ -5,7 +5,7 @@ package watch
import ( import (
"fmt" "fmt"
"github.com/ActiveState/tail/util" "github.com/ActiveState/tail/util"
"github.com/howeyc/fsnotify" "gopkg.in/fsnotify.v0"
"gopkg.in/tomb.v1" "gopkg.in/tomb.v1"
"os" "os"
"path/filepath" "path/filepath"

View File

@ -3,7 +3,7 @@
package watch package watch
import ( import (
"github.com/howeyc/fsnotify" "gopkg.in/fsnotify.v0"
"log" "log"
"sync" "sync"
) )