~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: 2010-02-26 13:39:25 UTC
  • mfrom: (5058.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100226133925-1qsa3webm753b6hx
(igc) Restore shlex_split_unicode (Gordon Tyler)

Show diffs side-by-side

added added

removed removed

Lines of Context:
875
875
    return ret
876
876
 
877
877
 
 
878
def shlex_split_unicode(unsplit):
 
879
    return cmdline.split(unsplit)
 
880
 
 
881
 
878
882
def get_alias(cmd, config=None):
879
883
    """Return an expanded alias, or None if no alias exists.
880
884