From: Tomas Babej Date: Sat, 26 Dec 2015 21:56:26 +0000 (+0100) Subject: backends: Replace NotImplemented with NotImplemetedError X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/8c8a89dab43f0c6040b81fd60512e59ca3126973 backends: Replace NotImplemented with NotImplemetedError --- diff --git a/tasklib/backends.py b/tasklib/backends.py index b15e8bd..76fce88 100644 --- a/tasklib/backends.py +++ b/tasklib/backends.py @@ -75,7 +75,7 @@ class Backend(object): Converts TW syntax datetime string to a localized datetime object. This method is not mandatory. """ - raise NotImplemented + raise NotImplementedError class TaskWarriorException(Exception):