Included the missing imports
authorNishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 21:13:56 +0530
changeset 89 539e7a0b5d86
parent 88 8165274cafa1
child 90 437af7ad6cb9
Included the missing imports
pytask/taskapp/models.py
--- a/pytask/taskapp/models.py	Sat Jan 08 21:11:41 2011 +0530
+++ b/pytask/taskapp/models.py	Sat Jan 08 21:13:56 2011 +0530
@@ -1,4 +1,5 @@
 from django.db import models
+from django.contrib.auth.models import User
 
 import tagging
 from tagging.fields import TagField
@@ -12,6 +13,8 @@
         ("DL", "Deleted"),
         ("CM", "Completed"))
 
+UPLOADS_DIR = "./pytask/static/uploads"
+
 class Task(models.Model):
     
     uniq_key = models.CharField(max_length = 10, unique = True)