diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-27 01:28:47 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-27 01:28:47 -0400 |
commit | 3693f1cd1448354009f5dafde3f1c2f04691252f (patch) | |
tree | 4e6b1526625b9a6ad080735a4397b86c40a308ae /models.py | |
parent | 898940fd53dcd6edb7c421fe4f5182d8977d3e70 (diff) | |
download | hyperkitty-3693f1cd1448354009f5dafde3f1c2f04691252f.tar.gz hyperkitty-3693f1cd1448354009f5dafde3f1c2f04691252f.tar.xz hyperkitty-3693f1cd1448354009f5dafde3f1c2f04691252f.zip |
use custom hyperkitty logger
Diffstat (limited to 'models.py')
-rw-r--r-- | models.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,9 +1,6 @@ -import logging - from django.db import models from django.contrib.auth.models import User - -logger = logging.getLogger(__name__) +from gsoc.utils import log class Rating(models.Model): @@ -24,8 +21,6 @@ class Rating(models.Model): else: return u'id = %s : %s voted down %s' % (self.id, unicode(self.user), self.messageid) - - class UserProfile(models.Model): # User Object |