diff options
author | hardythe1 | 2015-02-17 16:13:21 +0530 |
---|---|---|
committer | hardythe1 | 2015-02-17 16:13:21 +0530 |
commit | b4e1f51fdc57c16a6f93f3bc06138306777ed9fd (patch) | |
tree | 210e8c8e81d49568b47fa3f310200bff96fa0398 | |
parent | ea6a7e2fa5191f4d66cf89908a2703de4d21a476 (diff) | |
download | Python-TBC-Interface-b4e1f51fdc57c16a6f93f3bc06138306777ed9fd.tar.gz Python-TBC-Interface-b4e1f51fdc57c16a6f93f3bc06138306777ed9fd.tar.bz2 Python-TBC-Interface-b4e1f51fdc57c16a6f93f3bc06138306777ed9fd.zip |
corrected the variable name
-rw-r--r-- | tbc/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/models.py b/tbc/models.py index bd06c93..4b60757 100644 --- a/tbc/models.py +++ b/tbc/models.py @@ -162,7 +162,7 @@ class ActivityLog(LogEntry): proposal_id = models.IntegerField(null=True) conversation = models.TextField(null=True) def __unicode__(self): - return 'Activity log for %d' %(proposal_id) + return 'Activity log for %d' %(self.proposal_id) class AicteBook(models.Model): |