diff --git a/mopidy/internal/versioning.py b/mopidy/internal/versioning.py index db1aa949..cb72cc8f 100644 --- a/mopidy/internal/versioning.py +++ b/mopidy/internal/versioning.py @@ -22,6 +22,6 @@ def get_git_version(): if process.wait() != 0: raise EnvironmentError('Execution of "git describe" failed') version = process.stdout.read().strip() - if version.startswith('v'): + if version.startswith(b'v'): version = version[1:] return version