From: Paul Brossier Date: Wed, 17 Feb 2010 15:11:00 +0000 (+0000) Subject: tests/api/test_lolevel.py: use os.path.join X-Git-Tag: 0.3.2~204 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=30349e8d1ef4fb66e9cc47e0b5fb61de03ed6dbc;p=timeside.git tests/api/test_lolevel.py: use os.path.join --- diff --git a/tests/api/test_lolevel.py b/tests/api/test_lolevel.py index 1c87aba..5e01e40 100644 --- a/tests/api/test_lolevel.py +++ b/tests/api/test_lolevel.py @@ -1,7 +1,7 @@ from timeside.tests.api import examples import os -source=os.path.dirname(__file__) + "../samples/guitar.wav" +source= os.path.join (os.path.dirname(__file__), "../samples/guitar.wav") Decoder = examples.FileDecoder print "Creating decoder with id=%s for: %s" % (Decoder.id(), source)