mirror of
https://github.com/beetbox/beets.git
synced 2025-12-25 01:53:31 +01:00
fixed new add function
--HG-- extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%4037
This commit is contained in:
parent
f4b95ea1b5
commit
2fe30f1195
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue