##// END OF EJS Templates
inotify: make inotifydirstate.status() returns a tuple of lists....
Greg Ward -
r11628:68a30dae stable
parent child Browse files
Show More
@@ -154,7 +154,7 class client(object):
154 154 if names:
155 155 return filter(match, names.split('\0'))
156 156 return []
157 results = map(readnames, resphdr[:-1])
157 results = tuple(map(readnames, resphdr[:-1]))
158 158
159 159 if names:
160 160 nbytes = resphdr[-1]
General Comments 0
You need to be logged in to leave comments. Login now