Skip to content

Commit 4b80e2b

Browse files
committed
v0.5.13
2 parents 130cf51 + 0ac9470 commit 4b80e2b

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v0.5.13
4+
Released 25 February 2016
5+
6+
Another hotfix update
7+
8+
Highlights:
9+
* Fixed: Saving config with non-defined options
10+
* Fixed: Pep8 errors
11+
12+
The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.5.12...v0.5.13).
13+
314
## v0.5.12
415
Released 25 February 2016
516

headphones/webserve.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1456,7 +1456,10 @@ def configUpdate(self, **kwargs):
14561456

14571457
for k, v in kwargs.iteritems():
14581458
# TODO : HUGE crutch. It is all because there is no way to deal with options...
1459-
_conf = headphones.CONFIG._define(k)
1459+
try:
1460+
_conf = headphones.CONFIG._define(k)
1461+
except KeyError:
1462+
continue
14601463
conftype = _conf[1]
14611464

14621465
#print '===>', conftype

0 commit comments

Comments
 (0)