diff options
author | holger krekel <holger@merlinux.eu> | 2011-04-28 17:36:28 +0200 |
---|---|---|
committer | holger krekel <holger@merlinux.eu> | 2011-04-28 17:36:28 +0200 |
commit | 5be2e48cfd19937177b8967fca4864d4aa14b6e2 (patch) | |
tree | ab4eeae369b009a1e010d78e9cdc562234fc7637 /_pytest/main.py | |
parent | add the possibility to ignore the matching of arguments (diff) | |
download | pypy-5be2e48cfd19937177b8967fca4864d4aa14b6e2.tar.gz pypy-5be2e48cfd19937177b8967fca4864d4aa14b6e2.tar.bz2 pypy-5be2e48cfd19937177b8967fca4864d4aa14b6e2.zip |
use actually released pytest-2.0.3 / py-1.4.3 versions
(minor fixes compared to the versions pypy already used)
Diffstat (limited to '_pytest/main.py')
-rw-r--r-- | _pytest/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/main.py b/_pytest/main.py index d7948c6faf..f73ff597a0 100644 --- a/_pytest/main.py +++ b/_pytest/main.py @@ -71,7 +71,7 @@ def pytest_cmdline_main(config): session.exitstatus = EXIT_INTERRUPTED except: excinfo = py.code.ExceptionInfo() - config.pluginmanager.notify_exception(excinfo) + config.pluginmanager.notify_exception(excinfo, config.option) session.exitstatus = EXIT_INTERNALERROR if excinfo.errisinstance(SystemExit): sys.stderr.write("mainloop: caught Spurious SystemExit!\n") |