Index: bin/loman.py |
diff --git a/bin/loman.py b/bin/loman.py |
index 7575e2904f4e37ab27024aead6649e40d3b94627..ddb6d6d621f2771226ae327d472fa1f42f26fee1 100755 |
--- a/bin/loman.py |
+++ b/bin/loman.py |
@@ -43,6 +43,9 @@ class LocalManifest: |
for project in self._root.findall('project'): |
if project.attrib['path'] == path or project.attrib['name'] == name: |
+ if project.attrib['path'] == path and project.attrib['name'] == name: |
+ return True |
+ else: |
return False |
self._AddProject(name, path, workon='True') |
return True |