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

Fix for python 3 syntax when writing out pkl files

Updated ComponentAccumulator configuration tests which dump the configuration to a pickle file. In python3 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 de3462c8
No related branches found
No related tags found
Loading
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