From ea7f9948394430e64ba488a7fb480331dd3baf48 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sat, 11 Jun 2016 02:11:14 -0400 Subject: [PATCH] make the entire RSRC path a bytestring --- test/_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/_common.py b/test/_common.py index ecdde1a6c..f2913e4dc 100644 --- a/test/_common.py +++ b/test/_common.py @@ -40,7 +40,7 @@ beetsplug.__path__ = [os.path.abspath( )] # Test resources path. -RSRC = os.path.join(os.path.dirname(__file__), b'rsrc') +RSRC = util.bytestring_path(os.path.join(os.path.dirname(__file__), 'rsrc')) # Propagate to root loger so nosetest can capture it log = logging.getLogger('beets')