Merge "Python 3: enable tests/unit/middleware/test_request_id.py"

This commit is contained in:
Jenkins 2014-04-07 15:57:38 +00:00 committed by Gerrit Code Review
commit 13d6d6308a
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import uuid
def generate_request_id():
return 'req-%s' % str(uuid.uuid4())
return b'req-' + str(uuid.uuid4()).encode('ascii')
class RequestContext(object):