diff options
Diffstat (limited to 'app/notes/models.py')
-rw-r--r-- | app/notes/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/models.py b/app/notes/models.py index 6d139f0..818a139 100644 --- a/app/notes/models.py +++ b/app/notes/models.py @@ -116,7 +116,7 @@ def post_save_events(sender, instance, **kwargs): instance.city_name = adr.get('hamlet') or adr.get('village') or adr.get('town') or adr.get('city') instance.state_name = adr.get('state') instance.country_name = adr.get('country') - if instance.in_reply_to: + #if instance.in_reply_to: #crawl url, extract text, store it locally with a reference to instance pass if instance.twitter_send and not instance.twitter_sent: |