Mercurial > public > sg101
diff bio/models.py @ 919:0b6bf9c5a982
Bio app refactor.
For Django 1.7.7 upgrade.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 06 Apr 2015 20:33:10 -0500 |
parents | 9e803323a0d0 |
children | eeaf387803c6 |
line wrap: on
line diff
--- a/bio/models.py Mon Apr 06 20:14:10 2015 -0500 +++ b/bio/models.py Mon Apr 06 20:33:10 2015 -0500 @@ -13,6 +13,7 @@ from core.markup import SiteMarkup import bio.flags +from bio.signals import notify_profile_content_update # These are the secondary user status enumeration values. @@ -221,6 +222,3 @@ if self.count == 1: return u"1 %s" % self.badge.name return u"%d %ss" % (self.count, self.badge.name) - -# Put down here to avoid a circular import -from bio.signals import notify_profile_content_update