From a53259a79793f092a09f34014b8a15a875832036 Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Fri, 29 Mar 2013 16:30:33 +0100 Subject: [PATCH] Fixed option validation error Fixed error on validation that block javascript documentation generation. --- hacking/module_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index 5aff171e919..88540d24f2c 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",