From e05c1e4074d9ab9990e366b627af44c4073ff5a2 Mon Sep 17 00:00:00 2001 From: Sterling Harper Date: Fri, 26 Jun 2015 16:10:43 -0600 Subject: [PATCH] Fix Python3 distribcell test for #402 --- tests/test_filter_distribcell/test_filter_distribcell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filter_distribcell/test_filter_distribcell.py b/tests/test_filter_distribcell/test_filter_distribcell.py index 40f8dd69b5..e604d94daf 100644 --- a/tests/test_filter_distribcell/test_filter_distribcell.py +++ b/tests/test_filter_distribcell/test_filter_distribcell.py @@ -93,7 +93,7 @@ class DistribcellTestHarness(TestHarness): if i == 2: sha512 = hashlib.sha512() - sha512.update(outstr) + sha512.update(outstr.encode('utf-8')) outstr = sha512.hexdigest() # Write results to a file.