Fix exception error message in git.merge()
authorChuck Lever <cel@netapp.com>
Wed, 26 Oct 2005 18:51:43 +0000 (14:51 -0400)
committerCatalin Marinas <catalin.marinas@gmail.com>
Thu, 27 Oct 2005 19:47:12 +0000 (20:47 +0100)
Due to recent big git script rename.

Signed-off-by: Chuck Lever <cel@netapp.com>
stgit/git.py

index 69b1d33..d5bd724 100644 (file)
@@ -464,7 +464,7 @@ def merge(base, head1, head2):
 
     # this can fail if there are conflicts
     if os.system('git-merge-index -o -q gitmergeonefile.py -a') != 0:
-        raise GitException, 'git-merge-cache failed (possible conflicts)'
+        raise GitException, 'git-merge-index failed (possible conflicts)'
 
 def status(files = [], modified = False, new = False, deleted = False,
            conflict = False, unknown = False, noexclude = False):