Show More
@@ -818,7 +818,14 b' def _chain_path(base_path, ui, paths):' | |||
|
818 | 818 | class path(object): |
|
819 | 819 | """Represents an individual path and its configuration.""" |
|
820 | 820 | |
|
821 | def __init__(self, ui=None, name=None, rawloc=None, suboptions=None): | |
|
821 | def __init__( | |
|
822 | self, | |
|
823 | ui=None, | |
|
824 | name=None, | |
|
825 | rawloc=None, | |
|
826 | suboptions=None, | |
|
827 | validate_path=True, | |
|
828 | ): | |
|
822 | 829 | """Construct a path from its config options. |
|
823 | 830 | |
|
824 | 831 | ``ui`` is the ``ui`` instance the path is coming from. |
@@ -856,7 +863,8 b' class path(object):' | |||
|
856 | 863 | self.rawloc = rawloc |
|
857 | 864 | self.loc = b'%s' % u |
|
858 | 865 | |
|
859 |
|
|
|
866 | if validate_path: | |
|
867 | self._validate_path() | |
|
860 | 868 | |
|
861 | 869 | _path, sub_opts = ui.configsuboptions(b'paths', b'*') |
|
862 | 870 | self._own_sub_opts = {} |
General Comments 0
You need to be logged in to leave comments.
Login now