From ac6271564de3b8cc02e3cfbf2a25d6fea63c460f Mon Sep 17 00:00:00 2001 From: overflowerror Date: Mon, 23 Mar 2015 14:17:27 +0100 Subject: [PATCH] idk why twitter dislikes this --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index fae7617..ee2ba72 100644 --- a/main.py +++ b/main.py @@ -139,8 +139,8 @@ if __name__ == "__main__": for username in DESTINATION_ACCOUNTS: text = (username + " " + command + COMMAND_NAME_SEPERATOR + output) while len(text) != 0: - api.update_status(status = text[:140]) - text = text[140:] + api.update_status(status = text[:130]) + text = text[130:] else: api.update_status(status = (command + COMMAND_NAME_SEPERATOR + output))