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

  • Committer: Martin von Gagern
  • Date: 2010-04-30 17:55:49 UTC
  • mto: This revision was merged to the branch mainline in revision 5240.
  • Revision ID: martin.vgagern@gmx.net-20100430175549-y37pn8acoahndihz
Use version of bzrlib. Drop meta.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
bash completion function for bzr. See its documentation for details.
21
21
"""
22
22
 
23
 
from bzrlib.plugins.bash_completion.meta import *
24
 
from bzrlib.plugins.bash_completion.meta import __version__
25
 
 
26
 
from bzrlib import commands
27
 
 
 
23
from bzrlib import commands, version_info
 
24
 
 
25
 
 
26
bzr_plugin_name = 'bash_completion'
 
27
bzr_commands = [ 'bash-completion' ]
28
28
 
29
29
commands.plugin_cmds.register_lazy('cmd_bash_completion', [],
30
30
                                   'bzrlib.plugins.bash_completion.bashcomp')