diff options
author | Wolfgang Müller | 2021-04-28 19:00:34 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-04-28 20:15:53 +0200 |
commit | 5a99ca2ca6f78e94b36a52543139930705af56a9 (patch) | |
tree | 92ed10c057787972d3cfc18b886692c0294d2d74 | |
parent | 778df7fe303aa6d9563a61b181e1f87d347fea5c (diff) | |
download | quarg-5a99ca2ca6f78e94b36a52543139930705af56a9.tar.gz |
actions: Remove FIXME regarding / as separator in --around
Using / here should be fine.
Diffstat (limited to '')
-rw-r--r-- | quarg/actions.py | 1 |
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) |