From 09fa41f959e41c65a76147e27d4ddbc4774e938c Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Fri, 3 Feb 2017 17:24:47 -0800 Subject: [PATCH] fix TypeError: not all arguments converted during string formatting --- brozzler/browser.py | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/brozzler/browser.py b/brozzler/browser.py index b98f01a..ed5744f 100644 --- a/brozzler/browser.py +++ b/brozzler/browser.py @@ -200,8 +200,7 @@ class WebsockReceiverThread(threading.Thread): else: self.logger.info( 'reached limit but self.reached_limit is already set, ' - 'assuming the calling thread is already handling this', - self.reached_limit) + 'assuming the calling thread is already handling this') if self.on_response: self.on_response(message) diff --git a/setup.py b/setup.py index bd6a6fc..5198956 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_package_data(package): setuptools.setup( name='brozzler', - version='1.1b9.dev184', + version='1.1b9.dev185', description='Distributed web crawling with browsers', url='https://github.com/internetarchive/brozzler', author='Noah Levitt',