From 2fe30f11950e4513f09021a44dd708c18852953b Mon Sep 17 00:00:00 2001 From: "adrian.sampson" Date: Thu, 3 Jul 2008 19:55:02 +0000 Subject: [PATCH] fixed new add function --HG-- extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%4037 --- beets/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/library.py b/beets/library.py index f832cc465..8bba847ea 100644 --- a/beets/library.py +++ b/beets/library.py @@ -545,7 +545,7 @@ class Library(object): for root, dirs, files in os.walk(path): for filebase in files: - filepath = os.join(root, filebase) + filepath = os.path.join(root, filebase) try: Item.from_path(_normpath(filepath), self) except FileTypeError: