Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 480:430a10669928
Fixed call to ui.warn()
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Fixed call to ui.warn()
manifest hash: 3b82298c61822aaa41b4d9b579ec94a968a4b610
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCvqpMW7P1GVgWeRoRAotJAKCKG1BH2RKobak9ebapjViN8cQI1ACgisqU
jghqrq9978lFUA9zjA/N2eE=
=g65B
-----END PGP SIGNATURE-----
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sun, 26 Jun 2005 14:14:52 +0100 |
parents | 7293cb91bf2a |
children | 2705d20f77c9 |
comparison
equal
deleted
inserted
replaced
479:7293cb91bf2a | 480:430a10669928 |
---|---|
338 revs = [] | 338 revs = [] |
339 if opts['rev']: | 339 if opts['rev']: |
340 revs = map(lambda x: repo.lookup(x), opts['rev']) | 340 revs = map(lambda x: repo.lookup(x), opts['rev']) |
341 | 341 |
342 if len(revs) > 2: | 342 if len(revs) > 2: |
343 self.ui.warn("too many revisions to diff\n") | 343 ui.warn("too many revisions to diff\n") |
344 sys.exit(1) | 344 sys.exit(1) |
345 | 345 |
346 if files: | 346 if files: |
347 files = relpath(repo, files) | 347 files = relpath(repo, files) |
348 else: | 348 else: |