Skip to content

Commit

Permalink
[0.5.X] added missing imports - cgc ticket #97
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pinaxproject.com/pinax/branches/0.5.X@1159 45601e1e-1555-4799-bd40-45c8c71eef50
  • Loading branch information
jtauber committed Oct 27, 2008
1 parent b57b139 commit b28aaf9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/local_apps/projects/forms.py
@@ -1,6 +1,12 @@
from django import forms
from django.utils.translation import ugettext_lazy as _

from django.contrib.auth.models import User
try:
from notification import models as notification
except ImportError:
notification = None

from projects.models import Project, Topic, Task, ProjectMember

# @@@ this is based on Tribes -- can we re-use anything?
Expand Down

0 comments on commit b28aaf9

Please sign in to comment.