Rollback to previous selected version if the user doesn't confirm the version change.
[bertos.git] / wizard / plugins / codelite.py
index 1789c52048eb5eccaaa04efa567dc1a2fcedf988..f3dcc3d1ff9a1507dfe44f14b52fbb80a21d5485 100644 (file)
@@ -87,7 +87,8 @@ def findSources(path):
         if root.find("svn") == -1:
             file_dict[root.replace(path, "")] = {"dirs": [], "files": []}
             for dir in dirs:
-                if dir.find("svn") == -1:
+                # TODO: place the directory name in a constant file.
+                if dir.find("svn") == -1 and dir != "images" and dir != "object":
                     file_dict[root.replace(path, "")]["dirs"].append(dir)
             for file in files:
                 if file.endswith(const.EXTENSION_FILTER):