From: Rob Golding Date: Sun, 7 Sep 2014 20:00:40 +0000 (+0100) Subject: Merge branch 'release/0.4.1' X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/01590b11dce299da1d20ced3561bc78786dacac7?hp=df5c2f8494d1b6ed7441e56bbf0d0a235634c2b1 Merge branch 'release/0.4.1' --- diff --git a/setup.py b/setup.py index 37a3065..d6838e8 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.4.0' +version = '0.4.1' setup( name='tasklib', diff --git a/tasklib/task.py b/tasklib/task.py index 6fbce77..65679dc 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -44,6 +44,9 @@ class TaskResource(object): s = s.encode('utf-8') return s + def __repr__(self): + return str(self) + class TaskAnnotation(TaskResource): read_only_fields = ['entry', 'description']