Fix for update to latest itertools
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
8bf6e66d41
commit
ce9fb3c370
1 changed files with 2 additions and 1 deletions
|
@ -161,7 +161,8 @@ fn show(rt: &Runtime) {
|
||||||
|
|
||||||
let mut output = rt.stdout();
|
let mut output = rt.stdout();
|
||||||
|
|
||||||
Itertools::flatten(iters.into_iter())
|
iters.into_iter()
|
||||||
|
.flatten()
|
||||||
.into_get_iter(rt.store())
|
.into_get_iter(rt.store())
|
||||||
.trace_unwrap_exit()
|
.trace_unwrap_exit()
|
||||||
.filter_map(|opt| {
|
.filter_map(|opt| {
|
||||||
|
|
Loading…
Reference in a new issue