From 2db7699ed3b5bcbb7dc1f090fb95740b09b39e87 Mon Sep 17 00:00:00 2001 From: wlof Date: Sat, 19 Mar 2011 00:08:19 +0100 Subject: [PATCH] .. is now inserted at the beginning of sys.path so that local beets files are used instead of installed ones --- test/test_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_ui.py b/test/test_ui.py index 0db323b75..7af95d758 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -23,7 +23,7 @@ import textwrap from StringIO import StringIO import logging import _common -sys.path.append('..') +sys.path.insert(0, '..') from beets import library from beets import ui from beets.ui import commands