Version 0.5.3
/mp3togo/options.py
blob:0fad56322b9afc00704febab120b804509a83bdb -> blob:5187fd7c21c1e1812e888cf663ff8d7a16026a71
--- mp3togo/options.py
+++ mp3togo/options.py
@@ -244,7 +244,8 @@ interface.
if self.opt('conffile') and self._readconf:
self._lock()
try:
- fp = file(self._d['conffile'], 'w')
+ fn = os.path.expanduser(self._d['conffile'])
+ fp = file(fn, 'w')
for key in self._d.keys():
if key in self._nosave_options:
continue