~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-24 14:43:00 UTC
  • mfrom: (1558.1.12 Aaron's integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060224144300-16a30ef3bb38fb7f
Actually apply alias and uncommit fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
481
481
 
482
482
 
483
483
def get_alias(cmd):
484
 
    """if an alias for cmd exists, returns the expanded command
485
 
       else returns None"""
 
484
    """Return an expanded alias, or None if no alias exists"""
486
485
    import bzrlib.config
487
486
    alias = bzrlib.config.GlobalConfig().get_alias(cmd)
488
487
    if (alias):