/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 breezy/git/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 12:25:18 UTC
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116122518-8tb1y9ul3joufu3d
Fix E128.

Show diffs side-by-side

added added

removed removed

Lines of Context:
325
325
 
326
326
 
327
327
from ..diff import format_registry as diff_format_registry
328
 
diff_format_registry.register_lazy('git', __name__ + '.send',
 
328
diff_format_registry.register_lazy(
 
329
    'git', __name__ + '.send',
329
330
    'GitDiffTree', 'Git am-style diff format')
330
331
 
331
332
from ..send import (
345
346
from ..help_topics import (
346
347
    topic_registry,
347
348
    )
348
 
topic_registry.register_lazy('git', __name__ + '.help', 'help_git',
349
 
    'Using Bazaar with Git')
 
349
topic_registry.register_lazy(
 
350
    'git', __name__ + '.help', 'help_git', 'Using Bazaar with Git')
350
351
 
351
352
from ..foreign import (
352
353
    foreign_vcs_registry,
353
354
    )
354
 
foreign_vcs_registry.register_lazy("git",
355
 
    __name__ + ".mapping", "foreign_vcs_git", "Stupid content tracker")
 
355
foreign_vcs_registry.register_lazy(
 
356
    "git", __name__ + ".mapping", "foreign_vcs_git", "Stupid content tracker")
356
357
 
357
358
 
358
359
def update_git_cache(repository, revid):