hgext/lfs/pointer.py
changeset 39777 b63dee7bd0d9
parent 38475 67dc32d4e790
child 43076 2372284d9457
equal deleted inserted replaced
39776:cb65d4b7e429 39777:b63dee7bd0d9
    17 )
    17 )
    18 from mercurial.utils import (
    18 from mercurial.utils import (
    19     stringutil,
    19     stringutil,
    20 )
    20 )
    21 
    21 
    22 class InvalidPointer(error.RevlogError):
    22 class InvalidPointer(error.StorageError):
    23     pass
    23     pass
    24 
    24 
    25 class gitlfspointer(dict):
    25 class gitlfspointer(dict):
    26     VERSION = 'https://git-lfs.github.com/spec/v1'
    26     VERSION = 'https://git-lfs.github.com/spec/v1'
    27 
    27