~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/script.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-11-05 17:39:54 UTC
  • mfrom: (5524.1.2 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101105173954-s66k204jmq4ts8l1
(vila) Open trunk again as 2.3dev4 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
        method = getattr(self, mname, None)
214
214
        if method is None:
215
215
            raise SyntaxError('Command not found "%s"' % (cmd[0],),
216
 
                              None, 1, ' '.join(cmd))
 
216
                              (None, 1, 1, ' '.join(cmd)))
217
217
        if input is None:
218
218
            str_input = ''
219
219
        else: