aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quarg/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'quarg/actions.py')
-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)