Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/commands.py @ 8669:6f0f69da003e
commands: typo in bundle abort message
This error trigger if one calls bundle with the wrong parameters and
it is thus not an error scripts will want to look for (they could and
should ensure that they call bundle with the correct parameters).
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 31 May 2009 18:09:19 +0200 |
parents | f265106ccb53 |
children | 32537b12e091 |
comparison
equal
deleted
inserted
replaced
8668:aea3a23151bd | 8669:6f0f69da003e |
---|---|
495 base = ['null'] | 495 base = ['null'] |
496 else: | 496 else: |
497 base = opts.get('base') | 497 base = opts.get('base') |
498 if base: | 498 if base: |
499 if dest: | 499 if dest: |
500 raise util.Abort(_("--base is incompatible with specifiying " | 500 raise util.Abort(_("--base is incompatible with specifying " |
501 "a destination")) | 501 "a destination")) |
502 base = [repo.lookup(rev) for rev in base] | 502 base = [repo.lookup(rev) for rev in base] |
503 # create the right base | 503 # create the right base |
504 # XXX: nodesbetween / changegroup* should be "fixed" instead | 504 # XXX: nodesbetween / changegroup* should be "fixed" instead |
505 o = [] | 505 o = [] |