summaryrefslogtreecommitdiffstats
path: root/ipapython/ipautil.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/ipautil.py')
-rw-r--r--ipapython/ipautil.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py
index 2fa26fef8..240e0d872 100644
--- a/ipapython/ipautil.py
+++ b/ipapython/ipautil.py
@@ -600,16 +600,6 @@ def user_input_plain(prompt, default = None, allow_empty = True, allow_spaces =
if ipavalidate.Plain(ret, not allow_empty, allow_spaces):
return ret
-def user_input_path(prompt, default = None, allow_empty = True):
- if default != None and allow_empty:
- prompt += " (enter \"none\" for empty)"
- while True:
- ret = user_input(prompt, default, allow_empty)
- if allow_empty and ret.lower() == "none":
- return ""
- if ipavalidate.Path(ret, not allow_empty):
- return ret
-
class AttributeValueCompleter:
'''
Gets input from the user in the form "lhs operator rhs"