diff options
author | Marcelo E. Magallon <marcelo.magallon@gmail.com> | 2008-12-31 04:44:37 +0000 |
---|---|---|
committer | Marcelo E. Magallon <marcelo.magallon@gmail.com> | 2008-12-31 04:45:04 +0000 |
commit | 21f73854006d5e989b5ba6b58e6da198212f2e4b (patch) | |
tree | 0661ef11c9b258fe73f7e28d779b05119f4e503a | |
parent | 24d8dfbc34164a502e6b48df0230526097543762 (diff) | |
download | git-repo-21f73854006d5e989b5ba6b58e6da198212f2e4b.tar.gz |
Remove astray commav1.4.4
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 <barry@disus.com> for spotting the
issue and providing a patch.
Signed-off-by: Marcelo E. Magallon <marcelo.magallon@gmail.com>
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -940,7 +940,7 @@ class Project(object): | |||
940 | ref = R_M + self.manifest.branch | 940 | ref = R_M + self.manifest.branch |
941 | 941 | ||
942 | if IsId(self.revision): | 942 | if IsId(self.revision): |
943 | dst = self.revision + '^0', | 943 | dst = self.revision + '^0' |
944 | self.bare_git.UpdateRef(ref, dst, message = msg, detach = True) | 944 | self.bare_git.UpdateRef(ref, dst, message = msg, detach = True) |
945 | else: | 945 | else: |
946 | remote = self.GetRemote(self.remote.name) | 946 | remote = self.GetRemote(self.remote.name) |