diff --git a/command.py b/command.py index 9e113f1..4f6515e 100644 --- a/command.py +++ b/command.py @@ -123,9 +123,9 @@ class Command(object): project = None if os.path.exists(path): oldpath = None - while path and \ - path != oldpath and \ - path != manifest.topdir: + while (path and + path != oldpath and + path != manifest.topdir): try: project = self._by_path[path] break