Minor moving of todo and improving readability of push_exception
[doneit] / src / null_backend.py
1 class NullManager(object):
2
3         def __init__(self, username, password, token=None):
4                 pass
5
6         def get_project_names(self):
7                 return []
8
9         def save_task(self, taskDesc, projName, priority, duedate=""):
10                 raise NotImplementedError("Not logged in to any ToDo system")