Skip to content
Snippets Groups Projects
Commit 7f70a9e8 authored by John Chapman's avatar John Chapman
Browse files

Fix for writing pickle files in python 3

Updated `ComponentAccumulator` configuration tests which dump the configuration to a pickle file.
In python 3 the output file needs to be explicitly opened in binary mode.
I.e.
```
f = open('configdump.pkl', 'wb')
```
rather than
```
f = open('configdump.pkl', 'w')
```
parent 2f13da57
No related branches found
No related tags found
Loading
Showing
with 20 additions and 20 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment