From 3de5ec9be57eac98e74ec6cf24023701a2aa68f6 Mon Sep 17 00:00:00 2001 From: Bastian Germann Date: Mon, 8 Sep 2025 00:55:45 +0200 Subject: [PATCH] epsffit: Correct coordinate variable names --- psutils/command/epsffit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/psutils/command/epsffit.py b/psutils/command/epsffit.py index a36b3a1..b87edf9 100644 --- a/psutils/command/epsffit.py +++ b/psutils/command/epsffit.py @@ -65,19 +65,19 @@ def get_parser() -> argparse.ArgumentParser: ) parser.add_argument( "flly", - metavar="LLX", + metavar="LLY", type=paper_context.dimension, help="y coordinate of lower left corner of the box", ) parser.add_argument( "furx", - metavar="LLX", + metavar="URX", type=paper_context.dimension, help="x coordinate of upper right corner of the box", ) parser.add_argument( "fury", - metavar="LLX", + metavar="URY", type=paper_context.dimension, help="y coordinate of upper right corner of the box", )