diff options
author | Armin Rigo <arigo@tunes.org> | 2017-01-25 21:56:25 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2017-01-25 21:56:25 +0100 |
commit | 0c762c99042831f3a77379fd481002184fe016f0 (patch) | |
tree | 1e7ea158a479602203a665b750acfe04a01a92fb /pypy/goal | |
parent | Fix (obscure reason, can be reproduced with "py.test rtyper/") (diff) | |
download | pypy-0c762c99042831f3a77379fd481002184fe016f0.tar.gz pypy-0c762c99042831f3a77379fd481002184fe016f0.tar.bz2 pypy-0c762c99042831f3a77379fd481002184fe016f0.zip |
fix error message
Diffstat (limited to 'pypy/goal')
-rw-r--r-- | pypy/goal/targetpypystandalone.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py index 590b394187..051a19f27e 100644 --- a/pypy/goal/targetpypystandalone.py +++ b/pypy/goal/targetpypystandalone.py @@ -307,8 +307,8 @@ class PyPyTarget(object): if config.objspace.usemodules.cpyext: if config.translation.gc not in ('incminimark', 'boehm'): raise Exception("The 'cpyext' module requires the 'incminimark'" - " 'boehm' GC. You need either 'targetpypystandalone.py" - " --withoutmod-cpyext' or '--gc=incminimark'") + " or 'boehm' GC. You need either 'targetpypystandalone.py" + " --withoutmod-cpyext', or use one of these two GCs.") config.translating = True |