From 9cb4e253f4f5ee94721d26a3d95dbf915668ffa7 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 10 Oct 2012 16:27:22 -0400 Subject: [PATCH] api: Cast message ids to int before trying to compute the maximum. (imported from commit 1723c48758711b9ace3db95d82ad91c76512ffa3) --- common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 6e7726f..cb67c21 100644 --- a/common.py +++ b/common.py @@ -68,6 +68,6 @@ class HumbugAPI(): # TODO: Make this back off once it's more reliable time.sleep(1) continue - for message in sorted(res['messages'], key=lambda x: x["id"]): - max_message_id = max(max_message_id, message["id"]) + for message in sorted(res['messages'], key=lambda x: int(x["id"])): + max_message_id = max(max_message_id, int(message["id"])) callback(message)