##// END OF EJS Templates
Use relative imports in inotify.server....
Brendan Cully -
r6909:b5a6fce0 default
parent child Browse files
Show More
@@ -12,8 +12,8 b' import common'
12 import errno, os, select, socket, stat, struct, sys, time
12 import errno, os, select, socket, stat, struct, sys, time
13
13
14 try:
14 try:
15 import hgext.inotify.linux as inotify
15 import linux as inotify
16 from hgext.inotify.linux import watcher
16 from linux import watcher
17 except ImportError:
17 except ImportError:
18 print >> sys.stderr, '*** native support is required for this extension'
18 print >> sys.stderr, '*** native support is required for this extension'
19 raise
19 raise
General Comments 0
You need to be logged in to leave comments. Login now