From 21f73854006d5e989b5ba6b58e6da198212f2e4b Mon Sep 17 00:00:00 2001 From: "Marcelo E. Magallon" Date: Wed, 31 Dec 2008 04:44:37 +0000 Subject: Remove astray comma There's an extra "," at the end of the line, which is causing trouble when the manifest file specifies a revision for a project. Since the default manifest file doesn't specify revisions for the projects, the problem has gone unnoticed. Thanks to Barry Silverman for spotting the issue and providing a patch. Signed-off-by: Marcelo E. Magallon --- project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.py b/project.py index fe3ce34a..7743ca10 100644 --- a/project.py +++ b/project.py @@ -940,7 +940,7 @@ class Project(object): ref = R_M + self.manifest.branch if IsId(self.revision): - dst = self.revision + '^0', + dst = self.revision + '^0' self.bare_git.UpdateRef(ref, dst, message = msg, detach = True) else: remote = self.GetRemote(self.remote.name) -- cgit v1.2.3-54-g00ecf