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
* Don't return partial lines (PR #40)
* Use stable version of fsnotify (#46)
# July, 2014

View File

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

View File

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