summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xproject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index bcf1a46d..de35a602 100755
--- a/project.py
+++ b/project.py
@@ -2590,7 +2590,7 @@ class Project(object):
2590 cmd.append('-v') 2590 cmd.append('-v')
2591 cmd.append(HEAD) 2591 cmd.append(HEAD)
2592 if GitCommand(self, cmd).Wait() != 0: 2592 if GitCommand(self, cmd).Wait() != 0:
2593 raise GitError("cannot initialize work tree") 2593 raise GitError("cannot initialize work tree for " + self.name)
2594 2594
2595 if submodules: 2595 if submodules:
2596 self._SyncSubmodules(quiet=True) 2596 self._SyncSubmodules(quiet=True)