Skip to content

Commit 5460c97

Browse files
fix(cli): templating arguments getops (#2280)
The `templating` CLI parameter requires an argument for the template to use, but this cannot be passed since the `getops` definition is missing the `=` sign. Co-authored-by: Liam Newman <bitwiseman@gmail.com>
1 parent aef38b4 commit 5460c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/jsbeautifier/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def main():
190190
"space-in-empty-paren",
191191
"space-in-paren",
192192
"stdin",
193-
"templating",
193+
"templating=",
194194
"unescape-strings",
195195
"usage",
196196
"version",

0 commit comments

Comments
 (0)