diff --git a/todoman/cli.py b/todoman/cli.py index add5ee7a..67f2dcbf 100644 --- a/todoman/cli.py +++ b/todoman/cli.py @@ -499,7 +499,7 @@ def edit( changes = False for key, value in todo_properties.items(): - if value is not None and value != []: + if (value is not None or key in ['due']) and value != []: changes = True setattr(todo, key, value)