From feb194099c5ad2cbadf260d10994959abbc9bad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Ar=C4=B1c=C4=B1?= Date: Thu, 2 Sep 2010 09:06:58 +0000 Subject: [PATCH] Fixed Null urlstatus error. --- .../branches/mustafa_branch/djagen/collector/planethandler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DJAGEN/branches/mustafa_branch/djagen/collector/planethandler.py b/DJAGEN/branches/mustafa_branch/djagen/collector/planethandler.py index 62a403c..da4c0c4 100755 --- a/DJAGEN/branches/mustafa_branch/djagen/collector/planethandler.py +++ b/DJAGEN/branches/mustafa_branch/djagen/collector/planethandler.py @@ -53,9 +53,9 @@ class PlanetHandler(): author.channel_link = None try: - author.channel_url_status = channel.url_status + author.channel_urlstatus = channel.url_status except: - author.channel_url_status = None + author.channel_urlstatus = None if channel.label == "Personal": author.label_personal = 1