~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Parth Malwankar
  • Date: 2010-05-06 11:22:28 UTC
  • mfrom: (5214 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5241.
  • Revision ID: parth.malwankar@gmail.com-20100506112228-oswa6eknx7rmztyv
merged in changes from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1077
1077
    if not opt_no_aliases:
1078
1078
        alias_argv = get_alias(argv[0])
1079
1079
        if alias_argv:
1080
 
            user_encoding = osutils.get_user_encoding()
1081
 
            alias_argv = [a.decode(user_encoding) for a in alias_argv]
1082
1080
            argv[0] = alias_argv.pop(0)
1083
1081
 
1084
1082
    cmd = argv.pop(0)
1085
 
    # We want only 'ascii' command names, but the user may have typed
1086
 
    # in a Unicode name. In that case, they should just get a
1087
 
    # 'command not found' error later.
1088
 
 
1089
1083
    cmd_obj = get_cmd_object(cmd, plugins_override=not opt_builtin)
1090
1084
    run = cmd_obj.run_argv_aliases
1091
1085
    run_argv = [argv, alias_argv]