Include originally mentioned accounts in output tweet

This commit is contained in:
Klaus-Uwe Mitterer 2015-03-19 20:32:40 +01:00
parent 1284cff229
commit d61e9f98ce

View file

@ -49,7 +49,7 @@ while True:
else:
text = "Guten Morgen. :P"
api.update_status("@%s %s" % (recipient, text), original)
api.update_status("@%s %s %s" % (recipient, text, comment) [:140], original)
cur.execute("UPDATE tweets SET sent = 1 WHERE tweet_id = %i" % original)
sql_conn.commit()
except Exception, e: