rwl / PYPOWER

Port of MATPOWER to Python
http://rwl.github.io/PYPOWER/api/
Other
340 stars 112 forks source link

savecase is not compatible with python 3.4.3 #25

Open NadineLe opened 8 years ago

NadineLe commented 8 years ago

Line 101 in savecase.py has to be changed from "fd = open(fname, "wb")" to "fd = open(fname, "w")" By using the first version I get the error massage: "'str' does not support the buffer interface"