Show More
@@ -937,6 +937,10 class BranchCacheV3(_LocalBranchCache): | |||
|
937 | 937 | def _load_header(cls, repo, lineiter): |
|
938 | 938 | header_line = next(lineiter) |
|
939 | 939 | pieces = header_line.rstrip(b'\n').split(b" ") |
|
940 | for p in pieces: | |
|
941 | if b'=' not in p: | |
|
942 | msg = b"invalid header_line: %r" % header_line | |
|
943 | raise ValueError(msg) | |
|
940 | 944 | cache_keys = dict(p.split(b'=', 1) for p in pieces) |
|
941 | 945 | |
|
942 | 946 | args = {} |
General Comments 0
You need to be logged in to leave comments.
Login now