We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd78ec commit 0c19d3cCopy full SHA for 0c19d3c
1 file changed
src/SeleniumLibrary/entry/__main__.py
@@ -49,7 +49,7 @@ def cli():
49
required=True,
50
)
51
@click.option(
52
- "--plugin",
+ "--plugins",
53
help="Same as plugins argument in the library import.",
54
default=None,
55
type=str,
@@ -97,7 +97,7 @@ def translation(
97
print("Translation is valid, no updated needed.")
98
else:
99
with filename.open("w") as file:
100
- json.dump(translation, file, indent=4)
+ json.dump(lib_translation, file, indent=4)
101
print(f"Translation file created in {filename.absolute()}")
102
103
0 commit comments