Changes between Initial Version and Version 2 of Ticket #30045
- Timestamp:
- Dec 18, 2018, 8:48:58 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30045
- Property Resolution → needsinfo
- Property Status new → closed
- Property Component Uncategorized → contrib.sessions
- Property Type Uncategorized → Bug
-
Ticket #30045 – Description
initial v2 5 5 6 6 I believe the following line needs to be changed from: 7 return base64.b64encode(hash.encode() + b":" + serialized).decode('ascii') 7 `return base64.b64encode(hash.encode() + b":" + serialized).decode('ascii')` 8 8 to: 9 return base64.b64encode(hash.encode() + b":" + serialized.encode()).decode('ascii') 10 9 `return base64.b64encode(hash.encode() + b":" + serialized.encode()).decode('ascii')` 11 10 12 11 Below is a redacted traceback: 13 --- 12 {{{ 14 13 Environment: 15 14 … … 60 59 Exception Type: TypeError at <redacted> 61 60 Exception Value: can't concat str to bytes 62 --- 61 }}}