Skip to content

Commit

Permalink
Fix translation cmd
Browse files Browse the repository at this point in the history
Fixes #1908
  • Loading branch information
aaltat committed Jun 14, 2024
1 parent ffd78ec commit 0c19d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SeleniumLibrary/entry/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def cli():
required=True,
)
@click.option(
"--plugin",
"--plugins",
help="Same as plugins argument in the library import.",
default=None,
type=str,
Expand Down Expand Up @@ -97,7 +97,7 @@ def translation(
print("Translation is valid, no updated needed.")
else:
with filename.open("w") as file:
json.dump(translation, file, indent=4)
json.dump(lib_translation, file, indent=4)
print(f"Translation file created in {filename.absolute()}")


Expand Down

0 comments on commit 0c19d3c

Please sign in to comment.