diff options
author | hardythe1 | 2015-02-17 16:17:12 +0530 |
---|---|---|
committer | hardythe1 | 2015-02-17 16:17:12 +0530 |
commit | 10c0386d8f3a635979b9913f4028beb9b4256667 (patch) | |
tree | 689a3ed220a517ee89ed54f3aa186e1f173cc8f0 | |
parent | b4e1f51fdc57c16a6f93f3bc06138306777ed9fd (diff) | |
download | Python-TBC-Interface-10c0386d8f3a635979b9913f4028beb9b4256667.tar.gz Python-TBC-Interface-10c0386d8f3a635979b9913f4028beb9b4256667.tar.bz2 Python-TBC-Interface-10c0386d8f3a635979b9913f4028beb9b4256667.zip |
removed unicode
-rw-r--r-- | tbc/models.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tbc/models.py b/tbc/models.py index 4b60757..5c052a1 100644 --- a/tbc/models.py +++ b/tbc/models.py @@ -161,8 +161,6 @@ class SampleNotebook(models.Model): class ActivityLog(LogEntry): proposal_id = models.IntegerField(null=True) conversation = models.TextField(null=True) - def __unicode__(self): - return 'Activity log for %d' %(self.proposal_id) class AicteBook(models.Model): |