hgext/largefiles/__init__.py
changeset 29306 83cecc0b991f
parent 28798 c065e0ec13d1
child 29841 d5883fd055c6
equal deleted inserted replaced
29305:814076f4ace3 29306:83cecc0b991f
   102 will be ignored for any repositories not already containing a
   102 will be ignored for any repositories not already containing a
   103 largefile. To add the first largefile to a repository, you must
   103 largefile. To add the first largefile to a repository, you must
   104 explicitly do so with the --large flag passed to the :hg:`add`
   104 explicitly do so with the --large flag passed to the :hg:`add`
   105 command.
   105 command.
   106 '''
   106 '''
       
   107 from __future__ import absolute_import
   107 
   108 
   108 from mercurial import hg, localrepo
   109 from mercurial import (
       
   110     hg,
       
   111     localrepo,
       
   112 )
   109 
   113 
   110 import lfcommands
   114 from . import (
   111 import proto
   115     lfcommands,
   112 import reposetup
   116     overrides,
   113 import uisetup as uisetupmod
   117     proto,
   114 import overrides
   118     reposetup,
       
   119     uisetup as uisetupmod,
       
   120 )
   115 
   121 
   116 # Note for extension authors: ONLY specify testedwith = 'internal' for
   122 # Note for extension authors: ONLY specify testedwith = 'internal' for
   117 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   123 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   118 # be specifying the version(s) of Mercurial they are tested with, or
   124 # be specifying the version(s) of Mercurial they are tested with, or
   119 # leave the attribute unspecified.
   125 # leave the attribute unspecified.