summaryrefslogtreecommitdiff
path: root/taskapp/models.py
diff options
context:
space:
mode:
authornishanth2010-02-23 10:25:26 +0530
committernishanth2010-02-23 10:25:26 +0530
commit753cba2f27abb7483a197aeccc91ce6efa863fec (patch)
tree8c8e74511b904c48b2bc6105c38d3c9cd3413ec9 /taskapp/models.py
parent1ae2df11c59fe9800eddede6b6fca30ccd0ea519 (diff)
downloadpytask-753cba2f27abb7483a197aeccc91ce6efa863fec.tar.gz
pytask-753cba2f27abb7483a197aeccc91ce6efa863fec.tar.bz2
pytask-753cba2f27abb7483a197aeccc91ce6efa863fec.zip
fixed a bug in models.py .
Diffstat (limited to 'taskapp/models.py')
-rw-r--r--taskapp/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskapp/models.py b/taskapp/models.py
index ff070b9..7c85606 100644
--- a/taskapp/models.py
+++ b/taskapp/models.py
@@ -126,7 +126,7 @@ class Notification(models.Model):
sent_date = models.DateTimeField()
sub = models.CharField(max_length = 100)
message = models.TextField()
- deleted = models.BoolenField(default = False)
+ deleted = models.BooleanField(default = False)
tagging.register(Profile)
tagging.register(Task)