/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to versionedfiles.py

Fix formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
from bzrlib.revision import NULL_REVISION
18
 
from bzrlib.versionedfile import VersionedFiles, AbsentContentFactory
 
17
from bzrlib.revision import (
 
18
    NULL_REVISION,
 
19
    )
 
20
from bzrlib.versionedfile import (
 
21
    AbsentContentFactory,
 
22
    VersionedFiles,
 
23
    )
19
24
 
20
25
class GitTexts(VersionedFiles):
21
26