summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Vito Moscaritolo <marco@mavimo.org>2013-03-29 16:30:33 +0100
committerMarco Vito Moscaritolo <marco@mavimo.org>2013-03-29 16:30:33 +0100
commita53259a79793f092a09f34014b8a15a875832036 (patch)
treee0dbd199f11c8b3b036878c3bbdb2cb2db610915
parentbefad8f71f705f8348fdca368c200e0a1ba74dae (diff)
downloadansible-a53259a79793f092a09f34014b8a15a875832036.tar.gz
Fixed option validation error
Fixed error on validation that block javascript documentation generation.
-rwxr-xr-xhacking/module_formatter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py
index 5aff171e91..88540d24f2 100755
--- a/hacking/module_formatter.py
+++ b/hacking/module_formatter.py
@@ -164,7 +164,7 @@ def main():
p.add_option("-t", "--type",
action='store',
dest='type',
- choices=['html', 'latex', 'man', 'rst', 'json', 'markdown'],
+ choices=['html', 'latex', 'man', 'rst', 'json', 'markdown', 'js'],
default='latex',
help="Output type")
p.add_option("-m", "--module",