~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shellcomplete.py

  • Committer: Patch Queue Manager
  • Date: 2011-12-29 23:15:47 UTC
  • mfrom: (6405.1.2 fix-shell-complete)
  • Revision ID: pqm@pqm.ubuntu.com-20111229231547-vupamntx69hwp8dl
(jelmer) Fix the shell-complete command. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
def shellcomplete_commands(outfile = None):
61
61
    """List all commands"""
62
 
    import inspect
63
 
    import commands
 
62
    from bzrlib import commands
64
63
    from inspect import getdoc
65
64
 
66
65
    commands.install_bzr_command_hooks()