# HG changeset patch # User Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> # Date 1366023269 -7200 # Node ID e846b15e7a15484c83ebec3c766e1a2b8690132c # Parent 9a3506467341d26bdbd0e3c3671f3cfab46dc82c schema for serach tweets changed diff -r 9a3506467341 -r e846b15e7a15 .project --- a/.project Mon Apr 15 13:41:14 2013 +0200 +++ b/.project Mon Apr 15 12:54:29 2013 +0200 @@ -1,28 +1,34 @@ - - - tweet_live - - - - - - com.aptana.ide.core.unifiedBuilder - - - - - - com.aptana.projects.webnature - - - - 1312812919641 - - 6 - - org.eclipse.ui.ide.multiFilter - 1.0-name-matches-false-false-.DS_Store - - - - + + + tweet_live + + + + + + org.python.pydev.PyDevBuilder + + + + + com.aptana.ide.core.unifiedBuilder + + + + + + com.aptana.projects.webnature + org.python.pydev.pythonNature + + + + 1312812919641 + + 6 + + org.eclipse.ui.ide.multiFilter + 1.0-name-matches-false-false-.DS_Store + + + + diff -r 9a3506467341 -r e846b15e7a15 .pydevproject --- a/.pydevproject Mon Apr 15 13:41:14 2013 +0200 +++ b/.pydevproject Mon Apr 15 12:54:29 2013 +0200 @@ -1,8 +1,6 @@ - - - -python_tl + +Default python 2.6 /tweet_live/script/lib diff -r 9a3506467341 -r e846b15e7a15 script/lib/iri_tweet/iri_tweet/utils.py --- a/script/lib/iri_tweet/iri_tweet/utils.py Mon Apr 15 13:41:14 2013 +0200 +++ b/script/lib/iri_tweet/iri_tweet/utils.py Mon Apr 15 12:54:29 2013 +0200 @@ -415,8 +415,8 @@ 'id': self.json_dict["id"], 'id_str': self.json_dict["id_str"], #'in_reply_to_screen_name': ts["to_user"], - 'in_reply_to_user_id': self.json_dict["to_user_id"], - 'in_reply_to_user_id_str': self.json_dict["to_user_id_str"], + 'in_reply_to_user_id': self.json_dict.get("in_reply_to_user_id",None), + 'in_reply_to_user_id_str': self.json_dict.get("in_reply_to_user_id_str", None), #'place': ts["place"], 'source': self.json_dict["source"], 'text': self.json_dict["text"],