mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-07 20:29:34 +01:00
v0.5.13
This commit is contained in:
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## v0.5.13
|
||||
Released 25 February 2016
|
||||
|
||||
Another hotfix update
|
||||
|
||||
Highlights:
|
||||
* Fixed: Saving config with non-defined options
|
||||
* Fixed: Pep8 errors
|
||||
|
||||
The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.5.12...v0.5.13).
|
||||
|
||||
## v0.5.12
|
||||
Released 25 February 2016
|
||||
|
||||
|
||||
@@ -1456,7 +1456,10 @@ class WebInterface(object):
|
||||
|
||||
for k, v in kwargs.iteritems():
|
||||
# TODO : HUGE crutch. It is all because there is no way to deal with options...
|
||||
_conf = headphones.CONFIG._define(k)
|
||||
try:
|
||||
_conf = headphones.CONFIG._define(k)
|
||||
except KeyError:
|
||||
continue
|
||||
conftype = _conf[1]
|
||||
|
||||
#print '===>', conftype
|
||||
|
||||
Reference in New Issue
Block a user