diff options
author | 2009-02-26 22:24:18 +0000 | |
---|---|---|
committer | 2009-02-26 22:24:18 +0000 | |
commit | 122deff0405e27bf99a4ba04dcc9019cc9eb50d1 (patch) | |
tree | 54362b2c3f932f37c8e2d30e51396421be6c533f /python | |
parent | 5792dd3cc81e6099ca98a6c7d76183aee6f3d596 (diff) | |
download | paludis-122deff0405e27bf99a4ba04dcc9019cc9eb50d1.tar.gz paludis-122deff0405e27bf99a4ba04dcc9019cc9eb50d1.tar.xz |
Catch fetch errors at pretend time.
Fixes: ticket:685
Diffstat (limited to 'python')
-rw-r--r-- | python/action.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/action.cc b/python/action.cc index 862993aca..88fa19493 100644 --- a/python/action.cc +++ b/python/action.cc @@ -120,6 +120,7 @@ namespace return new FetchActionOptions(make_named_values<FetchActionOptions>( value_for<n::exclude_unmirrorable>(exclude_unmirrorable), value_for<n::fetch_unneeded>(fetch_unneeded), + value_for<n::ignore_unfetched>(false), value_for<n::make_output_manager>(&make_standard_output_manager), value_for<n::safe_resume>(safe_resume) )); |