summaryrefslogtreecommitdiffstats
path: root/gitc_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitc_utils.py')
-rw-r--r--gitc_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitc_utils.py b/gitc_utils.py
index b47e181c..8b5b007e 100644
--- a/gitc_utils.py
+++ b/gitc_utils.py
@@ -104,11 +104,11 @@ def generate_gitc_manifest(gitc_manifest, manifest, paths=None):
104 if not proj.upstream and not git_config.IsId(proj.revisionExpr): 104 if not proj.upstream and not git_config.IsId(proj.revisionExpr):
105 proj.upstream = proj.revisionExpr 105 proj.upstream = proj.revisionExpr
106 106
107 if not path in gitc_manifest.paths: 107 if path not in gitc_manifest.paths:
108 # Any new projects need their first revision, even if we weren't asked 108 # Any new projects need their first revision, even if we weren't asked
109 # for them. 109 # for them.
110 projects.append(proj) 110 projects.append(proj)
111 elif not path in paths: 111 elif path not in paths:
112 # And copy revisions from the previous manifest if we're not updating 112 # And copy revisions from the previous manifest if we're not updating
113 # them now. 113 # them now.
114 gitc_proj = gitc_manifest.paths[path] 114 gitc_proj = gitc_manifest.paths[path]