Fix project path finding

This commit is contained in:
Dave Halter
2018-01-23 20:30:27 +01:00
parent e6f934de11
commit e4559bef51

View File

@@ -116,7 +116,7 @@ class Project(object):
def _is_potential_project(path):
for name in _CONTAINS_POTENTIAL_PROJECT:
if os.path.exists(os.path.join(path)):
if os.path.exists(os.path.join(path, name)):
return True
return False