~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Erik Bågfors
  • Date: 2006-02-13 00:26:18 UTC
  • mto: (1558.1.9 Aaron's integration)
  • mto: This revision was merged to the branch mainline in revision 1574.
  • Revision ID: erik@bagfors.nu-20060213002618-6ad160456d097750
PEP8-ify

Show diffs side-by-side

added added

removed removed

Lines of Context:
477
477
        print 'Profile data written to %r.' % filename
478
478
    return ret
479
479
 
 
480
 
480
481
def get_alias(cmd):
481
482
    """if an alias for cmd exists, returns the expanded command
482
483
       else returns None"""
486
487
        return alias.split(' ')
487
488
    return None
488
489
 
 
490
 
489
491
def run_bzr(argv):
490
492
    """Execute a command.
491
493