fixed new add function

--HG--
extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%4037
This commit is contained in:
adrian.sampson 2008-07-03 19:55:02 +00:00
parent f4b95ea1b5
commit 2fe30f1195

View file

@ -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: