summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipalib/parameters.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipalib/parameters.py b/ipalib/parameters.py
index c1f3bcaab..235eeb64b 100644
--- a/ipalib/parameters.py
+++ b/ipalib/parameters.py
@@ -1493,9 +1493,10 @@ class File(Str):
Accepts file names and loads their content into the parameter value.
"""
- kwargs = Str.kwargs + (
+ kwargs = Data.kwargs + (
# valid for CLI, other backends (e.g. webUI) can ignore this
('stdin_if_missing', bool, False),
+ ('noextrawhitespace', bool, False),
)