# HG changeset patch # User Raphael Velt # Date 1366101729 -7200 # Node ID ed575da0ee15f11a3a4e4c6a101c58edb1edf0e4 # Parent 4c377df665697365c4847d24fabe8f07abae1c43# Parent e846b15e7a15484c83ebec3c766e1a2b8690132c Merge with 61e3683f9e2340a8c999a4e1f4aa2e4129d45b5b diff -r 4c377df66569 -r ed575da0ee15 .project --- a/.project Tue Apr 16 10:40:56 2013 +0200 +++ b/.project Tue Apr 16 10:42:09 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 4c377df66569 -r ed575da0ee15 .pydevproject --- a/.pydevproject Tue Apr 16 10:40:56 2013 +0200 +++ b/.pydevproject Tue Apr 16 10:42:09 2013 +0200 @@ -1,8 +1,6 @@ - - - -python_tl + +Default python 2.6 /tweet_live/script/lib diff -r 4c377df66569 -r ed575da0ee15 script/lib/iri_tweet/iri_tweet/utils.py --- a/script/lib/iri_tweet/iri_tweet/utils.py Tue Apr 16 10:40:56 2013 +0200 +++ b/script/lib/iri_tweet/iri_tweet/utils.py Tue Apr 16 10:42:09 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"],