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

  • Committer: Jelmer Vernooij
  • Date: 2009-09-02 15:57:03 UTC
  • mto: (0.239.9 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090902155703-a5wpfj021pa2a013
Remove pre-1.15 incompatible code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
    rio_hooks.install_named_hook('revision', update_stanza, None)
258
258
 
259
259
 
260
 
try:
261
 
    from bzrlib.transport import transport_server_registry
262
 
except ImportError:
263
 
    pass
264
 
else:
265
 
    transport_server_registry.register_lazy('git',
266
 
        'bzrlib.plugins.git.server', 
267
 
        'serve_git',
268
 
        'Git Smart server protocol over TCP. (default port: 9418)')
 
260
from bzrlib.transport import transport_server_registry
 
261
transport_server_registry.register_lazy('git',
 
262
    'bzrlib.plugins.git.server', 
 
263
    'serve_git',
 
264
    'Git Smart server protocol over TCP. (default port: 9418)')
269
265
 
270
266
 
271
267
from bzrlib.repository import network_format_registry as repository_network_format_registry