Skip to content

Commit

Permalink
"release 0.37.1"
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnd committed Jul 30, 2016
1 parent 8414d5b commit d0e4e18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
---------

0.37.1 (2016-07-30)
- FIXED: crash on start when not able to detect cherrypy version

0.37.0 (2016-07-09)
- FEATURE: support for reading MP4 tags
- FIXED: unicode crash when using cherrypy > 5.4
Expand Down
7 changes: 5 additions & 2 deletions cherrymusicserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#python 2.6+ backward compability
from __future__ import unicode_literals

VERSION = "0.37.0"
VERSION = "0.37.1"
__version__ = VERSION
DESCRIPTION = "an mp3 server for your browser"
LONG_DESCRIPTION = """CherryMusic is a music streaming
Expand All @@ -50,6 +50,9 @@
import sys
import threading
import signal
import logging

logger = logging.getLogger(__name__)

import gettext
from cherrymusicserver import pathprovider
Expand Down Expand Up @@ -151,7 +154,7 @@ def fake_wait_for_occupied_port(host, port):
try:
cherrypy_version = tuple(int(v) for v in cherrypy.__version__.split('.'))
except:
print(_(
logger.error(_(
'Could not determine cherrypy version. Please install cherrypy '
'using pip or your OS\'s package manager. Trying to detect version '
'automatically.'
Expand Down

0 comments on commit d0e4e18

Please sign in to comment.