summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/builder.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/builder.rs b/src/builder.rs
index 631c1af..a189de5 100644
--- a/src/builder.rs
+++ b/src/builder.rs
@@ -1306,11 +1306,8 @@ impl ImageListOptionsBuilder {
self
}
- pub fn all(
- &mut self,
- a: bool,
- ) -> &mut Self {
- self.params.insert("all", a.to_string());
+ pub fn all(&mut self) -> &mut Self {
+ self.params.insert("all", "true".to_owned());
self
}