Merge branch 'master' into qa

* master:
  remove stray logging
This commit is contained in:
Noah Levitt 2017-05-24 11:36:15 -07:00
commit 0a19770ba7
2 changed files with 1 additions and 4 deletions

View File

@ -121,9 +121,6 @@ class ThreadExceptionGate:
return self
def __exit__(self, exc_type, exc_value, traceback):
self.logger.info(
'self=%s exc_type=%s exc_value=%s', repr(self), repr(exc_type),
repr(exc_value))
assert self.thread == threading.current_thread()
self.ok_to_raise.clear()
return False # don't swallow exception

View File

@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup(
name='brozzler',
version='1.1b11.dev249',
version='1.1b11.dev250',
description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler',
author='Noah Levitt',