diff options
author | luxagraf <sng@luxagraf.net> | 2014-06-26 13:33:04 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-06-26 13:33:04 +0000 |
commit | 6982108ae5f1db125089a37ab3dcaf58a92c4c74 (patch) | |
tree | 8d535baf68e48a7e110e81d2fba25b1ecc5670eb /app/notes | |
parent | 04983b41c0c8335c33bba8b7a0b445c5f06c2558 (diff) |
fixed small bug in build tools
Diffstat (limited to 'app/notes')
-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: |