Compare commits

..
5 Commits
Author SHA1 Message Date
rembo10 4b80e2b39b v0.5.13 2016-02-25 19:44:11 +00:00
rembo10 0ac947099c Updated changelog for v0.5.13 2016-02-25 19:24:19 +00:00
rembo10 37a086d58d Possible fix for #2530 & #2526 2016-02-25 17:54:25 +00:00
rembo10 130cf51cc6 Fixed .pep8 for travis build (v0.5.12) 2016-02-25 17:30:55 +00:00
rembo10 7e4a1e453b Revert "Took out E123 from .pep8"
This reverts commit 56de4c63a7.
2016-02-25 17:29:43 +00:00
3 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -11,5 +11,5 @@
# E265 block comment should start with '# '
# E501 line too long (312 > 160 characters)
# E502 the backslash is redundant between brackets
ignore = E121,E122,E124,E125,E126,E127,E128,E261,E262,E265,E501,E502
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E261,E262,E265,E501,E502
max-line-length = 160
+11
View File
@@ -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
+4 -1
View File
@@ -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