From df5161bcbdcb72c8db31fcb46c844db435905dbf Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 29 Nov 2012 09:41:09 -0500 Subject: [PATCH] call_on_each_message: Remove dead 'first' parameter. (imported from commit 06885bf8049238184226d9fc7b64345e6848931a) --- common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/common.py b/common.py index 2ee9198..9765173 100644 --- a/common.py +++ b/common.py @@ -153,7 +153,6 @@ class HumbugAPI(object): max_message_id = None while True: if max_message_id is not None: - options["first"] = "0" options["last"] = str(max_message_id) res = self.get_messages(options) if 'error' in res.get('result'):