##// END OF EJS Templates
notify: fix off by one error.
Vadim Gelfer -
r2326:d0ba2f6b default
parent child Browse files
Show More
@@ -123,7 +123,7 b' class notifier(object):'
123 123
124 124 path = util.pconvert(path)
125 125 count = self.stripcount
126 while path and count >= 0:
126 while count > 0:
127 127 c = path.find('/')
128 128 if c == -1:
129 129 break
General Comments 0
You need to be logged in to leave comments. Login now