~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-05-05 09:50:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050505095017-f3f2031b8e3fa60e
- Better message when a wrong argument is given

Show diffs side-by-side

added added

removed removed

Lines of Context:
857
857
    allowed = cmd_class.takes_options
858
858
    for oname in opts:
859
859
        if oname not in allowed:
860
 
            raise BzrCommandError("option %r is not allowed for command %r"
 
860
            raise BzrCommandError("option '--%s' is not allowed for command %r"
861
861
                                  % (oname, cmd))
862
862
 
863
863
    # mix arguments and options into one dictionary