##// 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 129 ['b.txt']
130 130 >>> m2.exact('b.txt')
131 131 True
132 >>> m2.rel('b.txt')
133 'b.txt'
132 134 """
133 135
134 136 def __init__(self, path, matcher):
137 self._root = matcher._root
138 self._cwd = matcher._cwd
135 139 self._path = path
136 140 self._matcher = matcher
137 141
General Comments 0
You need to be logged in to leave comments. Login now