Skip to content

Commit 42ce511

Browse files
author
Alan Christie
committed
fix: Fix program names
1 parent ae812e4 commit 42ce511

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/load-er.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def main(c_args: argparse.Namespace) -> None:
5353

5454
# Parse command line arguments
5555
parser = argparse.ArgumentParser(
56-
prog="coins",
56+
prog="load-er",
5757
description="Loads exchange rates (from a YAML file)"
5858
)
5959
parser.add_argument('file', type=str, help='The source file')

tools/save-er.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def main(c_args: argparse.Namespace) -> None:
7272

7373
# Parse command line arguments
7474
parser = argparse.ArgumentParser(
75-
prog="coins",
75+
prog="save-er",
7676
description="Saves existing exchange rates (to a YAML file)"
7777
)
7878
parser.add_argument('file', type=str, help='The destination file')

0 commit comments

Comments
 (0)