mercurial/transaction.py
changeset 48683 111f5a0cbcaa
parent 48676 3f618484eeb6
child 48684 568f63b5a30f
equal deleted inserted replaced
48682:cdb0d857afe2 48683:111f5a0cbcaa
    26 version = 2
    26 version = 2
    27 
    27 
    28 # These are the file generators that should only be executed after the
    28 # These are the file generators that should only be executed after the
    29 # finalizers are done, since they rely on the output of the finalizers (like
    29 # finalizers are done, since they rely on the output of the finalizers (like
    30 # the changelog having been written).
    30 # the changelog having been written).
    31 postfinalizegenerators = {b'bookmarks', b'dirstate'}
    31 postfinalizegenerators = {
       
    32     b'bookmarks',
       
    33     b'dirstate-1-main',
       
    34 }
    32 
    35 
    33 GEN_GROUP_ALL = b'all'
    36 GEN_GROUP_ALL = b'all'
    34 GEN_GROUP_PRE_FINALIZE = b'prefinalize'
    37 GEN_GROUP_PRE_FINALIZE = b'prefinalize'
    35 GEN_GROUP_POST_FINALIZE = b'postfinalize'
    38 GEN_GROUP_POST_FINALIZE = b'postfinalize'
    36 
    39