From: Rob Golding Date: Tue, 5 Nov 2013 17:45:20 +0000 (+0000) Subject: Only create the data directory if we're asked to X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/8604d34521be2576ccc887d7799d0373da412720 Only create the data directory if we're asked to --- diff --git a/tasklib/task.py b/tasklib/task.py index 0546e44..c267048 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -230,7 +230,7 @@ class TaskQuerySet(object): class TaskWarrior(object): def __init__(self, data_location='~/.task', create=True): data_location = os.path.expanduser(data_location) - if not os.path.exists(data_location): + if create and not os.path.exists(data_location): os.makedirs(data_location) self.config = { 'data.location': os.path.expanduser(data_location),