[Oi-commits] r1316 - trunk/forum
oi-commits at pardus.org.tr
oi-commits at pardus.org.tr
Thu May 1 10:51:42 EEST 2008
Author: jnmbk
Date: Thu May 1 10:51:42 2008
New Revision: 1316
Modified:
trunk/forum/views.py
Log:
removed printf debugging
Modified: trunk/forum/views.py
=================================================================
--- trunk/forum/views.py (original)
+++ trunk/forum/views.py Thu May 1 10:51:42 2008
@@ -182,15 +182,12 @@
# generate post url
post_url = WEB_URL + post.get_absolute_url()
# generate In-Reply-To header. If we get quote that should be quote's message id
- print request.POST
if request.POST.has_key('quote_id'):
quote = get_object_or_404(Post, id=request.POST['quote_id'])
in_reply_to = quote.get_email_id()
else:
in_reply_to = topic.get_email_id()
- print 'In reply to: %s' % in_reply_to
-
# send email to everyone who follows this topic.
watchlists = WatchList.objects.all().filter(topic__id=topic_id)
for watchlist in watchlists:
More information about the Oi-commits
mailing list