From 121ae0c2205ddc19ea0182b6e9d8fb04e8a6cb7c Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 6 Mar 2012 11:18:10 +0100 Subject: [PATCH] Fix use of nonexistant function --- mopidy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/__init__.py b/mopidy/__init__.py index b2d9afa0..e0bce88c 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -19,7 +19,7 @@ def get_version(): try: return get_git_version() except EnvironmentError: - return get_plain_version() + return __version__ def get_git_version(): process = Popen(['git', 'describe'], stdout=PIPE, stderr=PIPE)