Show More
@@ -53,6 +53,8 b' from .utils import (' | |||
|
53 | 53 | stringutil, |
|
54 | 54 | ) |
|
55 | 55 | |
|
56 | rustdirs = policy.importrust('dirstate', 'Dirs') | |
|
57 | ||
|
56 | 58 | base85 = policy.importmod(r'base85') |
|
57 | 59 | osutil = policy.importmod(r'osutil') |
|
58 | 60 | parsers = policy.importmod(r'parsers') |
@@ -3204,6 +3206,9 b' class dirs(object):' | |||
|
3204 | 3206 | if safehasattr(parsers, 'dirs'): |
|
3205 | 3207 | dirs = parsers.dirs |
|
3206 | 3208 | |
|
3209 | if rustdirs is not None: | |
|
3210 | dirs = rustdirs | |
|
3211 | ||
|
3207 | 3212 | def finddirs(path): |
|
3208 | 3213 | pos = path.rfind('/') |
|
3209 | 3214 | while pos != -1: |
General Comments 0
You need to be logged in to leave comments.
Login now