##// END OF EJS Templates
narrowmatcher: fix broken rel method
Martin Geisler -
r12267:69e43c05 default
parent child Browse files
Show More
@@ -129,9 +129,13 b' class narrowmatcher(match):'
129 ['b.txt']
129 ['b.txt']
130 >>> m2.exact('b.txt')
130 >>> m2.exact('b.txt')
131 True
131 True
132 >>> m2.rel('b.txt')
133 'b.txt'
132 """
134 """
133
135
134 def __init__(self, path, matcher):
136 def __init__(self, path, matcher):
137 self._root = matcher._root
138 self._cwd = matcher._cwd
135 self._path = path
139 self._path = path
136 self._matcher = matcher
140 self._matcher = matcher
137
141
General Comments 0
You need to be logged in to leave comments. Login now