~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-04-15 02:57:26 UTC
  • Revision ID: mbp@sourcefrog.net-20050415025726-1c62fe2568c003e5
parse_args: option names must be ascii

Show diffs side-by-side

added added

removed removed

Lines of Context:
831
831
    while argv:
832
832
        a = argv.pop(0)
833
833
        if a[0] == '-':
 
834
            # option names must not be unicode
 
835
            a = str(a)
834
836
            optarg = None
835
837
            if a[1] == '-':
836
838
                mutter("  got option %r" % a)