aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-05-01 13:16:55 +0200
committerWolfgang Müller2021-05-01 13:16:55 +0200
commit60c6ffc224cca6bedfccfe2476d9e7294e6d7253 (patch)
tree2b9f0ffa50359e0886ed17452fcf0c00bce8db8f
parent18fcb77f9543efb2a83c4777f8ee6bc2a2b7c002 (diff)
downloadquarg-60c6ffc224cca6bedfccfe2476d9e7294e6d7253.tar.gz
actions: Specify where a parse error happened for --around
Previously quarg would simply echo the error message without any context, making it harder to find exactly which option caused it.
-rw-r--r--quarg/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/quarg/actions.py b/quarg/actions.py
index 528d515..990327e 100644
--- a/quarg/actions.py
+++ b/quarg/actions.py
@@ -52,7 +52,7 @@ class ParseAround(argparse.Action):
try:
hour_range = int(rangespec)
except ValueError as err:
- errx(err)
+ errx(f'Error when parsing range for --around: {err}')
else:
datespec, hour_range = (aroundspec, 12)