~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

Cleaned up some long lines

Show diffs side-by-side

added added

removed removed

Lines of Context:
218
218
        allowed_names = self.options().keys()
219
219
        for oname in opts:
220
220
            if oname not in allowed_names:
221
 
                raise BzrCommandError("option '--%s' is not allowed for command %r"
222
 
                                      % (oname, self.name()))
 
221
                raise BzrCommandError("option '--%s' is not allowed for"
 
222
                                      " command %r" % (oname, self.name()))
223
223
        # mix arguments and options into one dictionary
224
224
        cmdargs = _match_argform(self.name(), self.takes_args, args)
225
225
        cmdopts = {}
322
322
                    else:
323
323
                        optname = a[2:]
324
324
                    if optname not in cmd_options:
325
 
                        raise BzrOptionError('unknown long option %r for command %s'
326
 
                            % (a, command.name()))
 
325
                        raise BzrOptionError('unknown long option %r for'
 
326
                                             ' command %s' % 
 
327
                                             (a, command.name()))
327
328
                else:
328
329
                    shortopt = a[1:]
329
330
                    if shortopt in Option.SHORT_OPTIONS:
348
349
                            optargfn = Option.OPTIONS[optname].type
349
350
                            if optargfn is None:
350
351
                                # This option does not take an argument, so the
351
 
                                # next entry is another short option, pack it back
352
 
                                # into the list
 
352
                                # next entry is another short option, pack it
 
353
                                # back into the list
353
354
                                proc_argv.insert(0, '-' + a[2:])
354
355
                            else:
355
356
                                # This option takes an argument, so pack it
357
358
                                optarg = a[2:]
358
359
                
359
360
                    if optname not in cmd_options:
360
 
                        raise BzrOptionError('unknown short option %r for command'
361
 
                            ' %s' % (shortopt, command.name()))
 
361
                        raise BzrOptionError('unknown short option %r for'
 
362
                                             ' command %s' % 
 
363
                                             (shortopt, command.name()))
362
364
                if optname in opts:
363
365
                    # XXX: Do we ever want to support this, e.g. for -r?
364
366
                    if proc_aliasarg:
365
367
                        raise BzrError('repeated option %r' % a)
366
368
                    elif optname in alias_opts:
367
 
                        # Replace what's in the alias with what's in the real argument
 
369
                        # Replace what's in the alias with what's in the real
 
370
                        # argument
368
371
                        del alias_opts[optname]
369
372
                        del opts[optname]
370
373
                        proc_argv.insert(0, a)
583
586
 
584
587
    try:
585
588
        if opt_lsprof:
586
 
            ret = apply_lsprofiled(opt_lsprof_file, cmd_obj.run_argv, argv, alias_argv)
 
589
            ret = apply_lsprofiled(opt_lsprof_file, cmd_obj.run_argv, argv, 
 
590
                                   alias_argv)
587
591
        elif opt_profile:
588
592
            ret = apply_profiled(cmd_obj.run_argv, argv, alias_argv)
589
593
        else: