Merge pull request #194 from jvoisin/patch-1

Update setup.py
This commit is contained in:
Micah Lee 2015-06-16 10:35:31 -07:00
commit c25e8f99dc

View File

@ -29,8 +29,8 @@ except ImportError:
def file_list(path):
files = []
for filename in os.listdir(path):
if os.path.isfile(path+'/'+filename):
files.append(path+'/'+filename)
if os.path.isfile(os.path.join(path, filename)):
files.append(os.path.join(path, filename))
return files
system = platform.system()