Show More
@@ -2754,12 +2754,17 b' class localrepository(object):' | |||
|
2754 | 2754 | |
|
2755 | 2755 | unfi = self.unfiltered() |
|
2756 | 2756 | |
|
2757 | if caches is None: | |
|
2758 | 2757 |
|
|
2758 | msg = ( | |
|
2759 | "`full` argument for `repo.updatecaches` is deprecated\n" | |
|
2760 | "(use `caches=repository.CACHE_ALL` instead)" | |
|
2761 | ) | |
|
2762 | self.ui.deprecwarn(msg, "5.9") | |
|
2759 | 2763 |
|
|
2760 | 2764 |
|
|
2761 | 2765 |
|
|
2762 | else: | |
|
2766 | caches = repository.CACHES_ALL | |
|
2767 | elif caches is None: | |
|
2763 | 2768 |
|
|
2764 | 2769 | |
|
2765 | 2770 | if repository.CACHE_BRANCHMAP_SERVED in caches: |
General Comments 0
You need to be logged in to leave comments.
Login now