fix buglet

This commit is contained in:
Noah Levitt 2017-03-15 12:01:34 -07:00
parent f1d07ad921
commit fed8dfa978
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ before_script:
script: script:
- py.test -v -s tests - py.test -v -s tests
- py.test -v -s --rethinkdb-servers=localhost tests tests - py.test -v -s --rethinkdb-servers=localhost tests
- py.test -v -s --rethinkdb-servers=localhost --rethinkdb-big-table tests - py.test -v -s --rethinkdb-servers=localhost --rethinkdb-big-table tests
notifications: notifications:

View File

@ -51,7 +51,7 @@ except:
setuptools.setup( setuptools.setup(
name='warcprox', name='warcprox',
version='2.1b1.dev55', version='2.1b1.dev56',
description='WARC writing MITM HTTP/S proxy', description='WARC writing MITM HTTP/S proxy',
url='https://github.com/internetarchive/warcprox', url='https://github.com/internetarchive/warcprox',
author='Noah Levitt', author='Noah Levitt',

View File

@ -159,7 +159,7 @@ class RethinkCaptures:
else: else:
bucket = "__unspecified__" bucket = "__unspecified__"
canon_surt = urlcanon.semantic(recorded_url.url).decode("utf-8") canon_surt = urlcanon.semantic(recorded_url.url).__bytes__()
entry = { entry = {
# id only specified for rethinkdb partitioning # id only specified for rethinkdb partitioning