diff --git a/couchpotato/core/settings.py b/couchpotato/core/settings.py index c40e3e57..6830d591 100644 --- a/couchpotato/core/settings.py +++ b/couchpotato/core/settings.py @@ -1,5 +1,5 @@ from __future__ import with_statement -import ConfigParser + from hashlib import md5 from couchpotato.api import addApiView @@ -166,7 +166,7 @@ class Settings(object): return values def save(self): - with open(self.file, 'wb') as configfile: + with open(self.file, 'w') as configfile: self.p.write(configfile) self.log.debug('Saved settings')