diff options
-rwxr-xr-x | calendar-cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar-cli.py b/calendar-cli.py index effa704..805b47d 100755 --- a/calendar-cli.py +++ b/calendar-cli.py @@ -904,9 +904,9 @@ def main(): args = parser.parse_args(remaining_argv) if not args.nocaldav: - if not args.calendar_url: + if not args.calendar_url and not args.caldav_url: sys.stderr.write(""" -missing mandatory argument calendar_url +missing mandatory arguments ... either calendar_url or caldav_url needs to be set Have you set up a config file? Read the doc or ... ... use the --interactive-config option to create a config file """) |