Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdlite committed Dec 22, 2014
1 parent b12adeb commit 63e9432
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ Project resources
Changelog
=========

v0.0.4
----------------------------------------
cleanup

v0.0.3 (UNRELEASED)
----------------------------------------
Switched to URI schema 'beetslocal'
Expand Down
2 changes: 1 addition & 1 deletion mopidy_beetslocal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from mopidy import config, ext


__version__ = '0.0.3'
__version__ = '0.0.4'

# TODO: If you need to log, use loggers named after the current Python module
logger = logging.getLogger(__name__)
Expand Down
3 changes: 1 addition & 2 deletions mopidy_beetslocal/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ def get_track(self, id):
return self._convert_item(track)

def lookup(self, uri):
logger.debug(uri)
logger.debug("uri = %s" % type(uri).__name__)
logger.debug("uri = %s of type %s" % (uri, type(uri).__name__))
id = self.backend._extract_id(uri)
try:
track = self.get_track(id)
Expand Down

0 comments on commit 63e9432

Please sign in to comment.