/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Vincent Ladeuil
  • Date: 2011-09-27 11:48:50 UTC
  • mto: This revision was merged to the branch mainline in revision 6173.
  • Revision ID: v.ladeuil+lp@free.fr-20110927114850-338r2mns0138klv0
Global options respect their hidden attribute

Show diffs side-by-side

added added

removed removed

Lines of Context:
816
816
    try:
817
817
        options, args = parser.parse_args(args)
818
818
    except UnicodeEncodeError,e:
819
 
        raise errors.BzrCommandError(gettext('Only ASCII permitted in option names'))
 
819
        raise errors.BzrCommandError(
 
820
            gettext('Only ASCII permitted in option names'))
820
821
 
821
822
    opts = dict([(k, v) for k, v in options.__dict__.iteritems() if
822
823
                 v is not option.OptionParser.DEFAULT_VALUE])