Show More
@@ -24,7 +24,6 b' from . import (' | |||
|
24 | 24 | phases, |
|
25 | 25 | requirements, |
|
26 | 26 | scmutil, |
|
27 | store, | |
|
28 | 27 | transaction, |
|
29 | 28 | util, |
|
30 | 29 | ) |
@@ -446,9 +445,7 b' def manifestrevlogs(repo):' | |||
|
446 | 445 | # This logic is safe if treemanifest isn't enabled, but also |
|
447 | 446 | # pointless, so we skip it if treemanifest isn't enabled. |
|
448 | 447 | for entry in repo.store.data_entries(): |
|
449 |
if n |
|
|
450 | continue | |
|
451 | if entry.revlog_type == store.FILEFLAGS_MANIFESTLOG: | |
|
448 | if entry.is_revlog and entry.is_manifestlog: | |
|
452 | 449 | yield repo.manifestlog.getstorage(entry.target_id) |
|
453 | 450 | |
|
454 | 451 |
General Comments 0
You need to be logged in to leave comments.
Login now