aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-04-28 19:00:34 +0200
committerWolfgang Müller2021-04-28 20:15:53 +0200
commit5a99ca2ca6f78e94b36a52543139930705af56a9 (patch)
tree92ed10c057787972d3cfc18b886692c0294d2d74
parent778df7fe303aa6d9563a61b181e1f87d347fea5c (diff)
downloadquarg-5a99ca2ca6f78e94b36a52543139930705af56a9.tar.gz
actions: Remove FIXME regarding / as separator in --around
Using / here should be fine.
-rw-r--r--quarg/actions.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/quarg/actions.py b/quarg/actions.py
index 2b373b7..9dd6c49 100644
--- a/quarg/actions.py
+++ b/quarg/actions.py
@@ -48,7 +48,6 @@ class ParseDate(argparse.Action):
class ParseAround(argparse.Action):
def __call__(self, parser, namespace, aroundspec, option_string=None):
if '/' in aroundspec:
- # FIXME / fine here?
datespec, rangespec = aroundspec.split('/', 1)
try:
hour_range = int(rangespec)